####Send GET, POST requests and get html response
HttpGet("url", "var1=a&var2=b")
HttpPost("url", "var1=a&var2=b")
####Match string pattern and return string collection result
result will include boundaries:
MatchString("str to parse", "left boundary", "right boundary", true)
result will not include boundaries:
MatchString("str to parse", "left boundary", "right boundary", false)
####Decode html string
DecodeHTML("<p>hello world</p>")
result will be: <p>hello world</p>
####Convert html string to HTMLDocument object (Requires 'Microsoft HTML Object Library' reference)
ConvertToHTMLDoc("html string")
####Convert html string to DOMDocument object (Requires 'Microsoft XML' reference)
ConvertToXMLDOM("html string")