Tag: helpers

XML Parser The xmlp() function is used to parse the XML. It is extremely simple to use. Returns the result as a hash. def result = (xmlp("test.xml")) show(result) Output: ...xml content... URL Fetch/Extract urlfetch/urlextract() urlfetch.ola: def olang = (urlfetch("GET","http://o-lang.tk")) def type = (urlextract(olang, "content-type")) def length = (urlextract(olang, "content-length")) def server = (urlextract(olang, "server")) def […]