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

Re: matching attribute values that are in range

Subject: Re: matching attribute values that are in range
From: "Mukul Gandhi" <gandhi.mukul@xxxxxxxxx>
Date: Wed, 19 Jul 2006 21:04:51 +0530
xsl output t n
Hi Jeff,
  Please try this as well, and see if its useful for you.

<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:output method="xml" indent="yes" />

<xsl:variable name="doc" select="document('file2.xml')" />

<xsl:template match="/root">
  <root>
    <xsl:for-each select="entry[(@n &gt;=
substring-before($doc/root/entry/@n,'-')) and (@n &lt;=
substring-after($doc/root/entry/@n,'-'))]">
      <xsl:copy>
        <xsl:copy-of select="@*" />
        <xsl:value-of select="concat(., ' ', $doc/root/entry)" />
      </xsl:copy>
    </xsl:for-each>
  </root>
</xsl:template>

</xsl:stylesheet>

This stylesheet is applied to the XML:

<root>
<entry id='1' type='t' n='1'>some text</entry>
<entry id='1' type='t' n='2'>some text</entry>
<entry id='1' type='t' n='3'>some text</entry>
<entry id='1' type='t' n='4'>some text</entry>
<entry id='1' type='t' n='5'>some text</entry>
</root>

For file2.xml as:

<root>
<entry id='1' type='t' n='3-4'>some text2</entry>
</root>

The output produced is:

<?xml version="1.0" encoding="UTF-8"?>
<root>
  <entry id="1" type="t" n="3">some text some text2</entry>
  <entry id="1" type="t" n="4">some text some text2</entry>
</root>

Regards,
Mukul

On 7/19/06, Jeff Sese <jsese@xxxxxxxxxxxx> wrote:
hi!

i'm trying to match an element that may have an attribute value that is
in a range format (1-5), and is located on a separate xml document; how
can i get my xpath to match?

xml source:

<entry id='1' type='t' n='1'>some text</entry>
<entry id='1' type='t' n='2'>some text</entry>
<entry id='1' type='t' n='3'>some text</entry>
<entry id='1' type='t' n='4'>some text</entry>
<entry id='1' type='t' n='5'>some text</entry>
xml source 2:

<entry id='1' type='t' n='1-5'>some text2</entry>

needed output:

<entry id='1' type='t' n='1'>some text some text2</entry>
<entry id='1' type='t' n='2'>some text some text2</entry>
<entry id='1' type='t' n='3'>some text some text2</entry>
<entry id='1' type='t' n='4'>some text some text2</entry>
<entry id='1' type='t' n='5'>some text some text2</entry>

thanks,
--jeff

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.