Subject:Testing equality between nodes..... help!! Author:trinkets trinkets Date:21 Feb 2007 12:39 PM
hey guys,
I was wondering if anyone could help me with this..I am new to XSLT and your help will be of great use..
I am trying to compare the values of nodes of two different documents.
Can anybody tell me how do I achieve this.
Example:
Person.xml
<ID>1</ID><Name>AAA</name>
<ID>2</ID><Name>BBB</Name>
<ID>3</ID><Name>CCC</Name>
XSLT file should compare person.xml and cars_person and display id of the person and his car in xml format.
<ID>1</ID><Car>Ford</Car>
<ID>2</ID><Car>Mitsubishi</Car>
<ID>3</ID><Car>Honda</Car>
Subject:Testing equality between nodes..... help!! Author:trinkets trinkets Date:27 Feb 2007 10:59 AM
Well I am using stylus studio for my xslt scripts..
nyways could you please tell me whether the function current() can be used in stylus studio? If yes then how do i use it?