String Functions
ποΈ Char (character)
Returns the character described by the ASCII code given as the scalar input.
ποΈ CharIndex (character index)
Returns the index (position within the string, counting from the left) of the given character within the given string.
ποΈ DelimitedText
Builds a delimiter-separated string.
ποΈ Left
Returns the specified number of character or characters from the beginning of a specified text string, based on the number of characters specified in theβ¦
ποΈ Len (length)
Returns the number of characters in a specified text string.
ποΈ Lower
Converts all uppercase letters in a text string to lowercase.
ποΈ LTrim (left trim)
Removes all spaces from the beginning (left side) of the specified text.
ποΈ Mid
Returns a specified number of characters from a specified text string, starting at a specified position.
ποΈ Proper
This function converts the given string to proper case.
ποΈ RegexFind
Returns the boolean value if the pattern is found in the input string.
ποΈ RegexReplace
Replace the input string that matches the specified pattern with the replacement string.
ποΈ Replace
Replace replaces part of the specified text string, based on the number of characters specified, with a different specified text string.
ποΈ Rept (repeat)
Repeats the specified text a specified number of times.
ποΈ String Functions
ποΈ Reverse
Returns the reverse of the specified text string.
ποΈ Right
Returns the specified number of character or characters at the end of a specified text string, based on the number of characters specified in the scalar input.
ποΈ RTrim (right trim)
Removes all spaces from the end (right side) of the specified string.
ποΈ Space
Returns the specified number of spaces.
ποΈ Split
Splits a given string by specified delimiter into number of columns mentioned.
ποΈ Substitute
Substitutes the specified new text for all occurrences of specified old text in a text string.
ποΈ Trim
This function removes spaces from both the beginning and the end of the specified text.
ποΈ Upper
Converts all lowercase letters in a text string to uppercase.
ποΈ Concat
Concatenates the given list of strings using the specified delimiter
ποΈ Encrypt
Encrypt (scramble) the input using the specified key
ποΈ Decrypt
Decrypt the input using the specified key