• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Liutauras Vilda
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Devaka Cooray
  • Paul Clapham
Saloon Keepers:
  • Scott Selikoff
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
  • Frits Walraven
Bartenders:
  • Stephan van Hulst
  • Carey Brown

How to tell the parser to ignore &#160

 
Ranch Hand
Posts: 47
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I have a XML File where the string
<footag>&#160;</footag> occurs,
I want to parse this Document,add some processing instructions
and then i want i to write it back again to disk.When i do so,
the string <footag>&#160;<footag> is transformed into
<footag> </footag>
Thats odd because i want to process this xml file with a stylesheet and the result of
<xsl:value-of select="//foo"/>
is <footag> <footag> instead of <footag>&nbsp;</footag>
Can i somehow tell the parser to ignore &#160;?
Thanks,
Holger


[This message has been edited by Holger Prause (edited May 25, 2001).]
 
That is a really big piece of pie for such a tiny ad:
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic