|
|
"a string"to make a newline between "a" and "string". Newline, carriage return, and tab characters have one character entity names: A string with a newline: "first line &n;;second line" A string with a carriage_return "first line &r;;second line" A string with a carriage_return "before tab &t;;after tab" To view the available XML character entities, use
char.<entity_names/>
To add an XML character entity, use char.<add_entity_name "custom_name" char.newline/>
If you want to create a string literal with a lot of double_quotes in it, you may well find it easier
to use:
<string>a "string" <p/></string>
Note that in the above, no "p" object is created. The <p/> is just the ending chars of the string.
We could have done exactly the same thing with:
<string>a "string" <p/></string>
<![CDATA[some "'<string]]>
![]() | <bytes> some "'<string</>.0 |
© Copyright 2007 Clear Methods, Inc.