Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


Re: [xsl] Testing for special characters

From: "G. Ken Holman" <gkholman@-------------------->
To:
Date: 1/2/2009 3:00:00 PM
At 2009-01-02 14:36 +0000, Graeme Kidd wrote:
Hi,

I have used  Adobe Acrobat to export a PDF as XML and I am wanting 
to convert it.

Sometime it displays an unordered list like this:



<Sect>
   <P>List: </P>
   <P>Item 1; </P>
   <P>. </P>
   <P>Item 2; </P>
   <P>. </P>
   <P>Item 3; </P>
   <P>. </P>
</Sect>

Which I am trying to convert to this:



<Sect>
   <P>List:</P>
   <UL>
       <LI>Item 1; </LI>
       <LI>Item 2; </LI>
       <LI>Item 3; </LI>
   </UL>
</Sect>

The best I can think of is to check if there is a bullet point then 
use the previous <P> node.  At the moment I am having trouble just 
checking if there is a bullet point as this doesn't seem to work:

<xsl:if test="P='. '">

You don't mention what your current node is at the time that you are 
doing this test.  If you are already at a <P> element, then the above 
test will not work because it is looking for any children named <P> 
of the current element.



I am thinking it might be because it is a special character. I have 
tried specifying the output as UTF-8

<xsl:output method="xml" indent="yes" encoding="UTF-8" />



But that didn't seem to help, so does anyone else have any ideas?

Specifying output has no bearing on testing input.  XSLT acts on the 
node tree interpreted from the input, and the output is a 
serialization of the constructed node tree resulting from stylesheet execution.



I hope this helps.



. . . . . . . . . . . . Ken



--
Upcoming XSLT/XSL-FO, UBL and code list hands-on training classes:
:  Sydney, AU 2009-01/02; Brussels, BE 2009-03; Prague, CZ 2009-03
Training tools: Comprehensive interactive XSLT/XPath 1.0/2.0 video
Video lesson:    http://www.youtube.com/watch?v=PrNjJCh7Ppg&fmt=18
Video overview:  http://www.youtube.com/watch?v=VTiodiij6gE&fmt=18
G. Ken Holman                 mailto:gkholman@xxxxxxxxxxxxxxxxxxxx
Crane Softwrights Ltd.          http://www.CraneSoftwrights.com/s/
Male Cancer Awareness Nov'07  http://www.CraneSoftwrights.com/s/bc
Legal business disclaimers:  http://www.CraneSoftwrights.com/legal


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