Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


Re: [xsl] converting encoded characters <, > etc

From: Geert Josten <Geert.Josten@----------->
To:
Date: 12/1/2004 1:51:00 PM
Set newNode = objNode.createNode(1, "OutField1", "")
newNode.Text = "<p>Hello World</p>"

Here is the cause of &gt; and &lt; appearing in your result. You pass < and > as literal text. They 
are escaped before being inserted in the DOM tree..



Why did I not parse through "<p>Hello World</p>" and derive some nodes from
there? Well, 'cos it can be any HTML tag and I'm not confident I'll be able
to create a template for all the tags that might appear.

I'm not sure we understand each other. What I meant is that you should try to do something like:



Set tempDoc = New DOMDocument40 (or some object like that)
tempDoc.loadXML("<p>Hello World</p>");

objNode.addChild(tempDoc.firstChild);



It shouldn't matter whether the <p> contains <a> elements or not, as long as the string you pass 
contains well-formed XML...



Good luck.



Geert


transparent
Print
Mail
Like It
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent