Text.Clean
Syntax
Text.Clean(text as nullable text) as nullable text
About
Returns a text value with all control characters of text
removed.
Example 1
Remove line feeds and other control characters from a text value.
Usage
Text.Clean("ABC#(lf)D")
Output
"ABCD"