Platforms to show: All Mac Windows Linux Cross-Platform

FAQ.How to parse XML?

Answer: You can use code like this:
Example
dim s as string = "<test><test /></test>"

try
dim x as new XmlDocument(s)
MsgBox "OK"
catch xe as XmlException
MsgBox "invalid XML"
end try

If you got an exception, you have a parse error.


The biggest plugin in space...