August 2003
Intermediate to advanced
624 pages
15h 3m
English
This method checks to see whether a DelimitText Element in the cell's Grammar Element is set to true. It is primarily used by the XML to CSV utility to determine whether or not a column should have the text delimiter added to it before writing it to the output CSV file.
Arguments:
None
Returns:
Boolean - true if DelimitText Attribute is present and has a
value of true, false otherwise
Delimit Text <- call Grammar Element's getAttribute
on "DelimitText"
IF Delimit Text String is null or if Delimit Text String
is false
return false
ENDIF
Return true
|
This method trims leading zeroes from numeric data types. It also trims leading and trailing whitespace. ...