I'm using XSLT to transform an XML document to text. The text nodes of the XML document have < characters in them, which of course bombs the transformation. Is there anyway to get an XSLT transformation to work with a < character in a text node? In this case, all such characters are followed by whitespace.
|
|
Use entities instead of the character
And there should be an option in your API to convert them on transformation/output |
|||
|
|
|
|
As long as the XML document generated replaces < with < and > with > any properly implemented XML parsing API will load the document and properly transform the entities into < and > characters. |
||||||
|
|
|
If it's properly formatted XML, the < character should already be escaped with a < entity. There are pre-defined entities that all xml processors should properly declare. Check out the recommendation:
This should all be transparent to XSLT and it very well might be the case that whatever/whoever is generating the XML is not doing it according to the recommended standards. |
||
|
|
|
|
If you are outputting text, you can use,IIRC, some variant of |
||
|
|
|
|
Agh, bad luck. To be well-formed, the characters < and > may not appear unless marking tags. Not that that helps you. If you can't fix the source, I suggest thinking about pre-processing the incoming data to either replace with entity references as described in other answers, or enclose the offending sections in CDATA tags. You can perhaps use domain knowledge with regular expressions, or tokenization to correct the fields that might have bad data. I don't think you can make XSLT work with badly formed XML. |
||
|
|
|
If your XML file has literal < characters in the running text, then you don't have an XML file. You have something that's almost an XML file. Either fix the process that creates the file, or pre-process it to fix it. |
||
|
