cleanwith() Function

Returns the specified text, minus any characters not in the list of valid characters. (Performs the opposite function of "stripwith".)

Syntax

cleanwith( text, with )

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

with: (Text) The text allowed in the "cleaned" result.

Returns

Text

Examples

cleanwith("text string","xt") returns txtt

cleanwith("text string","x t") returns txt t

See Also

stripwith(): Use this function to perform the opposite to the cleanwith() function.

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

On This Page

FEEDBACK