Cicode Programming Reference > Cicode Function Categories > String Functions Introduction > StrClean

StrClean

Removes control characters from a string. Any character that is not a displayable ASCII character is removed from the string.

Syntax

StrClean(String)

String:

The source string.

Return Value

The string with all control characters removed.

Related Functions

StrTrim

Example

Variable=StrClean("*****Text*****");
/* Sets Variable to "Text" (the "*" character in this example represents an unprintable character). */

See Also

String Functions