Text.Select(text as nullable text, selectChars as any) as nullable text
返回文本值 text 的副本,其中已删除 selectChars 中不存在的所有字符。
text
selectChars
从文本值中选择范围从 "a" 到 "z" 的所有字符。
使用情况
Text.Select("a,b;c", { "a".."z" })
输出
"abc"