Returns the provided text, minus any characters considered printable.
Supports US English text only.
strip( text1, text2, …)
text: (Text) The text to be "stripped" for printing purposes.
Text
You can experiment with this function in the test box below.
Test Input
strip("this text is stripped")
returns [empty result]
clean(): Use this function to perform the opposite to the strip()
function.
On This Page