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.
This variable takes the following options:
Value | Description |
---|---|
FALSE, OFF, or 0 | Removes leading and trailing white space from the data during input and output |
TRUE, ON, 1, or INPUT | Keeps the white space on input, but striped out on output |
OUTPUT, or 2 | Stripes out the white space on input, but kept on output |
BOTH, IO, or 3 | Keeps leading and trailing white space from the data during input and output |