[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Mistake in tokenizing under Saxon 8.2

Subject: Mistake in tokenizing under Saxon 8.2
From: "Nicholas Hemley" <Nicholas.Hemley@xxxxxxxxxxxxxxx>
Date: Fri, 21 Jan 2005 09:50:25 +0000
nicholas hemley
Hello,

I presume that I have made a mistake somewhere in the stylesheet when
using the tokenize function under Saxon 8.2 - for some reason I am
loosing the whitespace chars around the matched regular expression.

For example, the following pattern:
text text [link,alt,link_text] text

should be transformed to:

text text <a href="link" alt="alt">link text</a> text

BUT

I am loosing the whitespasce characters around the <a> as follows:

text text<a href="link" alt="alt">link text</a>text
              ^                                                        
 ^
Why is this please? All the other whitespace chars are copied OK, even
though I am tokenising on whitespace.

If I use a &nbsp; in the stylesheet to compensate for the loss, it adds
two spaces, not one, which is wierd, so this is not currently a viable
solution.

Any input appreciated!

Many thanks,
Nic.

Appendix: Stylesheet Snippet

  <xsl:template match="/html/body/P|p">
    <!-- copy node plus select contents -->
    <xsl:copy>

              <xsl:variable name="tokens" select="tokenize(.,'\s+')"/>

              <xsl:for-each select="$tokens">

                <xsl:choose>
                  <xsl:when test='matches(.,"\[(.*),(.*),(.*)\]")'>

                    <xsl:variable name="elValue" select="."/>

                      <xsl:analyze-string select="$elValue"
regex="\[(.*),(.*),(.*)\]">

                        <xsl:matching-substring>
                          <a href="{regex-group(1)}">
                                  <xsl:attribute name='alt'>
                                    <xsl:value-of
select='replace(regex-group(3), "_"," ")'/>
                                  </xsl:attribute>
                                  <xsl:value-of
select='replace(regex-group(2), "_"," ")'/>
                           </a>
                        </xsl:matching-substring>

                      </xsl:analyze-string>

                  </xsl:when>
                  <xsl:otherwise>
                    <xsl:copy-of select="."/>
                  </xsl:otherwise>
                </xsl:choose>
              </xsl:for-each>
    </xsl:copy>
  </xsl:template>



**********************************************************************
The information contained in this message may be confidential or legally privileged and is intended for the addressee only, If you have received this message in error or there are any problems please notify the originator immediately. The unauthorised use, disclosure, copying or alteration of this message is strictly forbidden.
**********************************************************************

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.