strip() Function

Returns the provided text, minus any characters considered printable. Printable characters are the 95 printable ASCII characters plus three special characters: BACKSPACE (0x08), TAB (0x09), and NEWLINE (0x0a).

Supports US English text only.

Syntax

strip( text1, text2, …)

text: (Text) The text to be "stripped" for printing purposes.

Returns

Text

Examples

strip("this text is stripped") returns [empty result]

See Also

stripwith(): Use this function to perform the same operation as the strip() function, but with a custom set of characters.

clean(): Use this function to perform the opposite to the strip() function.

Open in Github Built: Fri, Nov 04, 2022 (07:10:52 PM)

On This Page

FEEDBACK