uint parseString(string content)/enmlFile

Fills the entire file with enml-entities read from content.

const string str = GetStringFromFile(GetResourceDirectory() + "sample.enml");

enmlFile f;
f.parseString(str);

print(f.get("myCar", "name"));
print(f.get("theWall", "artist"));

If the parsing is completed successfully, this method returns a 0.