Investment Studio > Expressions > Functions > Text > CLEAN

string clean(string argument)

Returns the argument string stripped of any non-printable control characters.

Example

Since char(27) returns the non-printable Escape character,

=clean(char(27) & "!")

equals just "!".

See also replace, substitute, trim.