This repository has been archived by the owner on Oct 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
CLEAN
Dan Gorman edited this page Nov 29, 2018
·
2 revisions
CLEAN
removes any control ASCII characters from the input argument.
CLEAN(arg1)
-
arg1
is a string to be cleaned
Control (or non-printable) characters are not printed by nature, so implementers of the CLEAN
function will likely not see any visible difference. To test the CLEAN
function, control characters can be inserted into a string using the CHAR
function:
CLEAN("TEST" + CHAR(13))
This would return "TEST" without the carriage return character.