Delete substrings within strings
newStr = erase(str,match)
newStr = erase(
deletes
all occurrences of str
,match
)match
in str
.
The erase
function returns the rest of the string
as newStr
.
If match
is an array that contains multiple
pieces of text, then erase
deletes every occurrence
of every piece of text specified by match
. The str
and match
arguments
do not need to be the same size.
count
| eraseBetween
| extractAfter
| extractBefore
| extractBetween
| insertAfter
| insertBefore
| join
| pad
| replace
| replaceBetween
| size
| split
| strlength
| strsplit