bpmext.text
Contains string processing convenience functions
Methods:

trimRight(str) Returns: {string}
Trims whitespace from the right end of a string
Example

escapeHTML(str) Returns: {string}
Escapes the following HTML ampersand character codes " < > &
Example

trim(str) Returns: {string}
Trims whitespace from both ends of a string
Example

trimLeft(str) Returns: {string}
Trims whitespace from the left end of a string
Example

replace(srch, repl, str) Returns: {string}
null
Example

unescapeHTML(str) Returns: {string}
Unescapes the following HTML ampersand character codes " < > &
Example

endsWith(str, suffix) Returns: {boolean}
Determines if the specified string ends with the specified prefix
Example

toString(obj) Returns: {string}
Returns a string value of the specified object

reverse(str) Returns: {string}
Returns the original string in reverse character order

collapse(str) Returns: {string}
Removes all whitespace from a string
Example

startsWith(str, prefix) Returns: {boolean}
Determines if the specified string starts with the specified prefix
Example