Gets the length of the given text.
Technical note: this is actually the number of Unicode codepoints in the text. For English text without accents, one character is one codepoint. If you have complex characters (e.g. flags) in your text, what looks like one character may be made up of multiple codepoints.
Replaces all occurrences of the first text with the second text, within the third text
If the first text is empty, no replacement is performed. If any occurrences overlap, the earlier part is replaced first.
Given a list of find/replace items, does all the find and replacements in the second parameter.
If the find text is empty, no replacement is performed. If any find occurrences overlap, the earliest matching item in the find/replace is used.
Joins a list of text values together as one text item.
If you want to add a separator between each text item, use join text with(..) instead.
Joins a list of text values together as one text item, inserting a separator between each.
Removes white space from beginning and end of the text.
Splits a text item into a list of smaller text items by dividing at the places where the separator occurs.
The returned list does not feature the separators.