$remove: Difference between revisions

From Scriptwiki
Jump to navigation Jump to search
Daveoh (talk | contribs)
No edit summary
 
(No difference)

Latest revision as of 21:55, 8 April 2008

Removes any occurrence of substring in string.

$remove(string,substring,...)

Note: You can use $removecs() for a case-sensitive version.

Example

$remove(abcdefg,cd)  returns abefg

You can also specify multiple remove parameters:

$remove(abcdefg,a,c,e,g)  returns bdf

See Also