Strip all HTML tagsREReplace(content,"<[^>]*>","","all")
Strip high ASCII characters (ASCII 128 and above)REReplace(content,"[^\x00-\x7F]","","all")
Encode all ampersands that are not already encodedREReplaceNoCase(content, "&(?!amp;)", "&", "all")
Encode all ampersands that are not part of entities (eg. ignore )
REReplace(arguments.content, "&(?!##?\w+;)", "&", "all")
Validate a list of numbersREReplace(content,"[^0-9,]","","all")
Strip new lines, carriage returns and tabsREReplace(content,"[\n\r\t]","","all")