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:
  #PB_String_NoCase: 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

All

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