xsl-list
[Top] [All Lists]

RE: [xsl] Unique Attribute value

2010-07-01 02:22:26
Hi,

Check with the below model:

<xsl:template match="/">
<xsl:for-each select="//x">
<xsl:if test="@id = following::x/@id">
<xsl:value-of select="@id"/>
</xsl:if>
</xsl:for-each>
</xsl:template>

regards,
Rummy


-----Original Message-----
From: pankaj(_dot_)c(_at_)thomsondigital(_dot_)com 
[mailto:pankaj(_dot_)c(_at_)thomsondigital(_dot_)com] 
Sent: Thursday, July 01, 2010 12:43 PM
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: [xsl] Unique Attribute value

Hello all,

Is there a way to check whether an element's attribute has unique value
in 
xml structure and is not repeating. 

For instance, in below sample xml "p1" is repeating twice and any good 
parser will throw an error for it, though I would like it to check it
with 
XSLT itself. Weird, I know. I am just trying to figure out the best 
possible way to get this done.

My actual requirement is little bit more complex but thought of starting

asking with this. 


<?xml version="1.0"?>
<root>
        <x id="p1">xxx</x>
        <x id="p2">yyy</x>
    <b>
        <x id="p3">zzz</x>
        <x id="p1">AAA</x>
    </b>
</root>

TIA,
Pankaj 

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>