RemainAny$

Takes two parameters, Source and Search

Description:

This command searches the Source for any of the characters (bytes) in the Search value. If any characters (bytes) in the Search value match any of the characters (bytes) in the Source value, the first matching occurrence is used and the remaining characters (bytes) of the Source are returned. If no match is found, an empty string is returned.

Example:

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

[New] Result = RemainAny$ Source, Search

Html Result 'Result is equal to "bcdefg"