Capitalize |
This function capitalizes an input string and optionally lowers the rest of the characters
|
Concat |
Implementation of the CONCAT function.
|
Equals |
This function compares strings case sensitive, as opposed to the '=' operator which is case insensitive
|
Find |
Find function that uses a regular expression to find a pattern in a string, and returns the first occurance that
matches the pattern.
|
Guid |
This function when invoked generates a new GUID.
|
IndexOf |
This function returns the index of the first occurrence of a substring in a string, optionally from a start index
|
LastIndexOf |
This function returns the index of the last occurrence of a substring in a string, optionally from a start index
|
LowerCase |
This function returns a string with all characters in lowercase
|
Match |
Checks if a string completely matches a regular expression.
|
Replace |
This function replaces a pattern in a string with a given replacement
|
Split |
This function splits a string on a given pattern and returns the split parts in a (not unique) list.
|
StrBack |
Returns an amount of characters from the back of the string provided as argument.
|
StrConcat |
Appends two strings together.
|
StrFront |
Returns the an amount of characters from the front of the string passed as argument.
|
StringLength |
Implementation of the LENGTH function.
|
SubString |
This function returns the string starting at the start index and ending at either the end index or the end of the
string if the end index is not provided.
|
SubStringAfter |
This function returns the end of a string after the first occurrence of a given substring, or an empty string if the
substring is not found
|
SubStringBefore |
This function return the start of a string before the first occurrence of a given substring
|
Trim |
This function removes the leading and trailing spaces of a string
|
UpperCase |
This function returns a string in all uppercase characters
|