new parseXML(body, script) → {Operation}
Cheerio parser for XML and HTML
Parameters:
Name | Type | Description |
---|---|---|
body |
String | data string to be parsed |
script |
function | script for extracting data |
- Source:
Returns:
- Type
- Operation
Example
parseXML(body, function($){
return $("table[class=your_table]").parsetable(true, true, true);
})