| Name |
Description |
| Base64Decode |
Decodes a Base64 string into a bytearray. |
| Base64DecodeToString |
Decodes a Base64 string into string. |
| Base64Encode |
Encodes a byte array argument into a Base64 byte array. |
| Base64EncodeToString |
Encodes a byte array argument into a string using Base64 encoding scheme. |
| CONCAT |
Concatenates a variable number of strings and returns them as one string. |
| ExtractQueryStringParam |
Extracts the value from a specified query string parameter for a url field. |
| ExtractSearchQuery |
Returns the search string from a search engine query url. |
| ExtractUrlPart |
Extracts a specified part from a URL field. |
| INDEXOF |
Returns the position of the first occurrence of a search string in a string field, when searching forward from the start index. |
| LAST_INDEX_OF |
Returns the position of the last occurrence of a search string in a string field, when searching backward from the end of the string. |
| LCFIRST |
Converts the first character in a string to lower case |
| Length |
Returns the number of characters in a string field. |
| LOWER |
Converts the characters in a string_field to lower case. |
| QueryStringToMap |
Converts a string field that contains a query string (...?key1=value1&key2=value2) to a map of key:value pairs. From the map you can extract fields using the notation map#'fieldname'. |
| REGEX_EXTRACT |
Returns the nth occurrence (specified by index) of a string that matches the regular expression. |
| REGEX_EXTRACT_ALL |
Returns a tuple with all matched groups. |
| REGEX_FIND_ALL |
Return all occurrences of strings that match a regular expression in a bag. |
| REPLACE |
In a string field, replaces all occurrences of a string with a different string. |
| SPRINTF |
Uses printf-style template to formats a set of values using the native Java formatter library. |
| STRSPLIT |
Splits a string around matches of a delimiter |
| STRSPLITTOBAG |
Splits a string into a bag around matches of a delimiter. |
| SUBSTRING |
Returns part of a string field. |
| TOKENIZE |
Generates a bag from delimited strings in string field. If you don't specify a single-character delimiter, tokenize will use any of the following characters: space, double-quote, comma, parenthesis, star |
| TRIM |
Removes leading and trailing spaces from a string field. |
| UCFIRST |
Converts the first character in a string to upper case |
| UPPER |
Converts the characters in a string_field to upper case. |
| URLDecode |
Decodes a string field containing an encoded url. |
| URLEncode |
URL-encodes a given string expression.. |
| UUID |
Returns a universally unique identifier (string) |