RemoveString()

Syntax

String$ = RemoveString(String$, StringToRemove$ [, Mode])
Description
Finds all occurrences of 'StringToRemove$' into the given 'String$' and removes them.

'Mode' is an optional value and can be a combination of the following values:
  1: Case insensitive remove (A=a). By default the remove is case sensitive.

Example :
  Debug RemoveString("This is Art", "is") ; Will display "Th  Art"

Supported OS

Windows, Linux, MacOS X

<- RTrim() - String Index - ReplaceString() ->