Text.Select

構文

Text.Select(text as nullable text, selectChars as any) as nullable text

バージョン情報

selectChars に含まれていないすべての文字を削除したうえで、テキスト値 text のコピーが返されます。

例 1

テキスト値から 'a' から 'z' の範囲のすべての文字を選択します。

使用方法

Text.Select("a,b;c", {"a".."z"})

出力

"abc"