@ brief This utility class escapes special characters from a string.
The following characters are replaced:
- &: replaced with &
- <: replaced with <
- >: replaced with >
- ": replaced with "
- ': replaced with '
- all other characters are left unchanged The reverse process of un-escaping the special character sequences is taken care of by the Xerces library.
This class works fine with UTF-8 and single-byte encodings, but will NOT work with other multibyte encodings (such as UTF-116 or UTF-32). FrePPLe consistently uses UTF-8 in its internal representation.
Definition at line 1982 of file utils.h.