parseXML()
Input / FilesDescription
Parses an XML string and returns an XML object.
Syntax
XML parseXML(std::string src)
Parameters
| Name | Type | Description |
|---|---|---|
| src | std::string | XML string to parse |
Returns
XMLRelated
Under the Hood
From Processing.h:
static XML parseXML(const std::string& src);
Under the Hood
From Processing.cpp:
XML PApplet::parseXML(const std::string& src){ size_t i=0; return parseXMLNode(src,i); }
XML PApplet::loadXML(const std::string& path){ return parseXML(readFileString(path));