String
The following functions allow you to search or modify string values in expression bindings.
📄️ char
Takes a Unicode character code (as an integer), and returns the Unicode character as a string.
📄️ concat
Concatenates all of the strings passed in as arguments together.
📄️ escapeSQL
Returns the given string with special SQL characters escaped.
📄️ escapeXML
Returns the given string after being escaped to be valid for inclusion in XML.
📄️ fromBinary
Returns an integer value of the binary formatted string argument.
📄️ fromHex
Returns an integer value of the hex formatted string argument.
📄️ fromOctal
Returns an integer value of the octal formatted string argument.
📄️ left
Returns count characters from the left side of string, where count and string are the arguments to the function.
📄️ lower
Takes a string and returns a lower-case version of it.
📄️ numberFormat
Returns a string version of the number argument, formatted as specified by the pattern string.
📄️ ordinal
Takes a Unicode character (as a string), and returns the corresponding character code, as an integer.
📄️ repeat
Repeats the given string some number of times.
📄️ replace
Finds all occurrences of a substring inside of a source string, and replaces them with the replacement string.
📄️ right
Returns count number of characters starting from the right side of string, where count and string are the arguments to the function.
📄️ split
Takes the starting string and splits it into substrings
📄️ stringFormat
This expression returns a formatted string using the specified format string and arguments. Mainly, this expression is used for building dynamic string objects.
📄️ substring
Will return the portion of the string from the startIndex to the endIndex, or end of the string if endIndex is not specified
📄️ toBinary
Returns a binary formatted string representing the unsigned integer argument.
📄️ toHex
Returns a hex formatted string representing the unsigned integer argument.
📄️ toOctal
Returns an octal formatted string representing the unsigned integer argument.
📄️ trim
Takes the argument string and trims of any leading and/or trailing whitespace
📄️ upper
Takes a string and returns an uppercase version of it.
📄️ urlEncode
Enables users to create an HTTP binding's URL on the fly.