Text.CleanText.Clean
構文Syntax
Text.Clean(text as nullable text) as nullable text
バージョン情報About
text
の印刷不可能な文字をすべて削除したテキスト値を返します。Returns a text value with all non-printable characters of text
removed.
例 1Example 1
テキスト値から改行などの印刷不可能な文字を削除します。Remove line feeds and other non-printable characters from a text value.
Text.Clean("ABC#(lf)D")
"ABCD"