Text Functions
Text functions evaluate or manipulate string data to perform operations like text modification, formatting, and extraction.
Combines multiple strings into a single text value.
Searches for a specified substring in a text value. If the substring is found, the function returns True
, otherwise it returns False
.
Determines if a text value ends with a specified substring. If the substring is found at the end of the text value, the function returns True
, otherwise it returns False
.
Returns the index where it first finds the specified substring within a string. Returns 0
if not found.
Returns True
if the string matches the pattern. Case insensitive.
Returns the left portion of the string (the beginning), up to specified number of characters.
Returns the number of characters in a string, including spaces.
Returns True
if the string value matches the pattern. Case sensitive.
Sets the string to a desired length by adding or removing characters at the front. Uses an optional fill character or defaults to extra spaces.
Converts a string to all lower case.
Removes leading spaces from a string.
Converts text to proper case, capitalizing the first letter of each word.
Returns the substring that matches a regular expression within a string.
Returns True
if a string matches a regular expression.
Returns a string for a pattern and replaces it with a specified string.
Returns the result of repeating the string a specified number of times.
Replaces every instance of a specified string with a replacement string.
Reverses the order of characters in a string.
Returns the right portion of a string (the end), up to the specified number of characters.
Sets the string to a desired length by adding or removing characters at the end. Uses an optional fill character, or defaults to extra spaces.
Removes trailing spaces from the end of a string.
Splits the string into multiple parts at the positions of each appearance of the delimiter and returns the nth part of the string at the specified position.
Determines if a string starts with the specified substring. Returns True
or False
.
Removes both leading and trailing spaces from a string.
Converts a string to upper case (all capital letters).
Last updated
Was this helpful?