Text.Select
Selects all occurrences of the given character or list of characters from the input text value.
function (optionaltext
as nullable any, optionalselectChars
as nullable any) as nullable any
Returns a copy of the text value
text
with all the characters not in selectChars
removed.Text.Modification
Select all characters in the range of 'a' to 'z' from the text value.
Text.Select("a,b;c", {"a".."z"})
"abc"
Last modified 4yr ago