$remove: Difference between revisions
Jump to navigation
Jump to search
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