_Added in 1.8.10_ *$removecs(string,substring,...)* Removes any occurrence of substring in string. _[[$removecs]] is case-sensitive, see [[$remove]] for case-insensitive version._ *Parameters* string - The string to search. substring - The substring to remove. ... - Additional substrings to remove. *Example*
; Remove all occurrences of 'CD' from the string. //echo -ag $removecs(abcdCDefg,CD) ; Remove all occurrences of 'A', 'C', 'E', 'G' from the string. //echo -ag $removecs(aAbcCdeEfgG,a,c,e,g)