Text Functions
Functions for working with text (string) values.
- Text.CombineJoins a list of text values into a single text value with an optional separator.
- Text.ContainsReturns true if a text value contains a specified substring.
- Text.EndsWithReturns true if a text value ends with a specified substring.
- Text.FromConverts a value to its text representation.
- Text.LengthReturns the number of characters in a text value.
- Text.LowerConverts all characters in a text value to lowercase.
- Text.ProperCapitalizes the first letter of each word in a text value.
- Text.RemoveRemoves all occurrences of specified characters from a text value.
- Text.ReplaceReplaces all occurrences of a substring within a text value.
- Text.SplitSplits a text value into a list of text values using a specified separator.
- Text.StartsWithReturns true if a text value starts with a specified substring.
- Text.TrimRemoves leading and trailing whitespace (or specified characters) from a text value.
- Text.TrimEndRemoves trailing whitespace (or specified characters) from a text value.
- Text.TrimStartRemoves leading whitespace (or specified characters) from a text value.
- Text.UpperConverts all characters in a text value to uppercase.