RemoveAny$

Takes two parameters, Source and Search

Description:

This command searches the Source for the Search value. If any of the characters (bytes) in the Search value are present in the Source, they are removed from the Source and the Source is returned. If none of the characters (bytes) in Search are present in Source, then the original Source is returned.

Example:

[New] Source = "abcdefg"
[New] Search = "acb"

[New] Result = RemoveAny$ Source, Search

Html Result 'Result is equal to "defg"