T
Testbruger
Hi,
I am generating a XML based file for a system that will generate PCL code
from textual <text>..</text> tag items. The PCL string needs escape
characters. The string within this tag will be transparently forward to a
device that understands escape characters.
How can I include the character ' 27' into the data so that the XML is
properly formed and not rejected.
char c = '\u001b';
string = "ab" + c + "de" will not work.
Any ideas?
Gr. Ricardo
I am generating a XML based file for a system that will generate PCL code
from textual <text>..</text> tag items. The PCL string needs escape
characters. The string within this tag will be transparently forward to a
device that understands escape characters.
How can I include the character ' 27' into the data so that the XML is
properly formed and not rejected.
char c = '\u001b';
string = "ab" + c + "de" will not work.
Any ideas?
Gr. Ricardo