简体   繁体   中英

Parse HTML chunk with nbsp in MSXML

I'm trying to load a chunk of HTML into MSXML's DOMDocument. The said chunk is valid XML with one excepton - it has   entities. MSXML chokes on them, claims "Reference to undefined entity 'nbsp'.".

Can I make MSXML recognize it as valid somehow?

Simple solution: Just run a text replacement of " " to " " before parsing the document. Which should work, since there cannot be a verbatim   in the text, which should not be replaced.

More standard solution: Declare a nbsp; entity in the xml, by inserting

<!DOCTYPE foobar [
   <!ENTITY nbsp " " >
]>

before the xml root node.

You can also use "0xA0" and &#x00A0; if you actually want a non-breaking space, instead of a normal space

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM