Takes two parameters, Source, Match
Description:
This command removes any characters (bytes) located in the Search value from the left and the right of the Source and then returns the modified Source.
Example:
[New] source = "abcdef"
[New] search = "ae"
[New] results = TrimAny$ source, search
Html ("results: " & results) 'results: bcdf