enum <anonymous>

NameValueDescription
BINARY1Convert AString or WString into an Intger in binary form
SIGNED2Will take a small binary string integer and maintain sign when increasing to lager 64bit Integer.
INVERTED3Will invert the string, good for turning big ended integers into little ended ones.
SIGNED_INVERTED4When taking the Substring of a string, if less the 8 byte this will keep the sign corrent as it lengthens the integer.
TRIM7if Substring or ToString format parameter, remove and white spaces off the begining and end.
QUOTE8ToString format parameter, will make the string SQL safe, ie replace '"' with '\"' and so on.
PDF_NAME9ToString format parameter, will make the string pdf safe name, ie replace ' ' with '#20' and so on.
PDF_TEXT10ToString format parameter, will make the string pdf safe text, ie replace ' ' with '#20' and so on.
PHP11ToString and SetStructure format parameter, will format the TVariable string for php.
PHP_SERIALIZE12ToString and SetStructure format parameter, will format the TVariable string as php serialize.
XML13ToString and SetStructure format parameter, will format the TVariable string for XML.
XML_CANONICAL14ToString format parameter, will format the TVariable string for XML string in canonical form for signing.
XML_VERBATIM15ToString format parameter, will format the TVariable string for XML, leaving the namespaces as defined in the file.
JSON16ToString format parameter, will format the TVariable string for JSON.
JOIN17ToString format parameter, will glue the TVariable string with a seperator, similar to php implode.
BASE_6418AString format parameter, will format the TVariable string for base64 with maximum lines of 64 characters.
URL19AString format parameter, will transform invalid URL characters.
HTML20ToString and SetStructure format parameter, Will take HTML string and break it up for processing.
CSV21ToString and SetStructure format parameter, Will take CSV file string and break it up for process. If no headers are provided, then it assume the first row are the headers
HEXADECIMAL24Integer format to convert strings in the format '0xFFFFFFF' and return the Integer value.
TWO_DECIMAL_PLACES25ToString format parameter, good for currency.
CURRENCY26WString format parameter, format a number to a string suitable to curreny.
LOWER_CASE32AString and WString format parameter, to convert a string into lower case.
UPPER_CASE33AString and WString format parameter, to convert a string into upper case.
UPPER_CASE_WORDS35AString and WString format parameter, to convert a string into title case, with the first character of each word as upper case, and the remainder as lower case.
ALPHANUMERIC36AString and WString format parameter, to remove all symbols and formating characters.
FIRST0FindIndex and FindLabel to find the first node in the list.
LAST1FindIndex and FindLabel to find the last node in the list.
EQUALTO2FindIndex and FindLabel to find the node withh the equal label or index, without creating an instance of that node.
NEXT3FindIndex and FindLabel to find the next node in the list.
PREVIOUS5FindIndex and FindLabel to find the previous node in the list.

Also See

Integer, AString, WString, ToString, SetStructure, FindIndex, FindLabel