Clean Function

Description:
Removes all non-printable characters from the text value.
Returns:
Text
Parameter:
Parameter
Data Type
Description
1
Text
The text value.
Example:
When using functions inside a field, remember the field brackets:
{Clean(VariableName)}
Expression
Result
Clean( "a^Lb" )
"ab"
Clean( "a b" )
"a b"
Clean( Char(31) )
""

Related content