XML_KEEP_WHITESPACE

Use this variable to preserve the leading and trailing white space from data elements.

Both AcuXML and C$XML remove leading and trailing white space from data elements, including white space in CDATA sections. To get the CDATA data, nothing is needed because it is returned automatically. For other white space, use the XML_KEEP_WHITESPACE configuration variable.

Set the value to FALSE (default) to remove leading and trailing white space from the data when it is parsed. Set the value to TRUE to return all white space in the XML element. The element looks like this:
<my-data>
     this is my data
 </my-data>

Returned data starts with a new line, then four spaces, and another new line.