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

Re: Move elements to preceding parent

Subject: Re: Move elements to preceding parent
From: Martin Honnen <Martin.Honnen@xxxxxx>
Date: Wed, 17 Jun 2009 12:52:06 +0200
Re:  Move elements to preceding parent
Israel Viente wrote:
I have another question regarding this.
I want to be able to control the valid ending paragraph characters
from a config file in xml.
How can I read the set [.?&quot;!] from an external xml? - say something like:
<ParagraphTerminator>
		<Char>.</Char>
		<Char>?</Char>
		<Char>&quot;</Char>
		<Char>!</Char>
</ParagraphTerminator>

or any other xml representation that will be easy to read as the set
in the regular expression.

You can do that by pulling in that document with the doc function and building the regular expression:


<xsl:stylesheet
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xpath-default-namespace="http://www.w3.org/1999/xhtml"
  version="2.0">

<xsl:output method="xhtml"/>

<xsl:variable name="chars" select="string-join(doc('chars.xml')/ParagraphTerminator/Char, '')" xpath-default-namespace=""/>
<xsl:variable name="re1" select="concat('[', $chars, ']$')"/>



<xsl:template match="@* | node()"> <xsl:copy> <xsl:apply-templates select="@* | node()"/> </xsl:copy> </xsl:template>

<xsl:template match="p[span[@class ne 'chapter'] and not(matches(span[@class ne 'chapter'][last()], $re1))]">
<xsl:copy>
<xsl:apply-templates select="@* | node() | following-sibling::p[1]/node()"/>
</xsl:copy>
</xsl:template>


<xsl:template match="p[preceding-sibling::p[1][span[@class ne 'chapter'] and not(matches(span[@class ne 'chapter'][last()], $re1))]]"/>

</xsl:stylesheet>

There are however certain characters like '-' that would need to be escaped. That applies to both solutions but is easier to forget and overlook if the characters are read in from a file.


--


	Martin Honnen
	http://msmvps.com/blogs/martin_honnen/

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.