I have a string that may or may not contain valid xml content. How can I test to see if that particular string is a valid xml document or not? I would prefer this to be in jQuery or just plain javascript.
thanks.
I have a string that may or may not contain valid xml content. How can I test to see if that particular string is a valid xml document or not? I would prefer this to be in jQuery or just plain javascript.
thanks.
Share Improve this question asked Mar 12, 2014 at 23:59 NinerNiner 2,2057 gold badges39 silver badges50 bronze badges 1- possible duplicate of Regex to check for XML if it is well formed – attila Commented Mar 13, 2014 at 0:09
1 Answer
Reset to default 9You can try this JQuery code:
function isXML(xml){
try {
xmlDoc = $.parseXML(xml); //is valid XML
return true;
} catch (err) {
// was not XML
return false;
}
}