This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: SimpleProblem


Hi,

I hope it's what you mean ;=) but...

-------------- XML --------------
<doc>
<A>
  <B>
    <C>LASTNAME</C>
  </B>
</A>

<AA>
  <BB>
   <CC>MIDDLENAME</CC>
  </BB>
</AA>

<AAA>
  <BBB>FIRSTNAME</BBB>
</AAA>
</doc>
-------------- XSL --------------

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

<xsl:template match="/">
<xsl:variable name="lastname" select="string(/doc/A/B/C)"/>
<xsl:variable name="middlename" select="string(/doc/AA/BB/CC)"/>
<xsl:variable name="firstname" select="string(/doc/AAA/BBB)"/>
<xsl:value-of select="concat('YOURNAME:', $firstname, '-', $middlename,
'-', $lastname)"/>
</xsl:template>

</xsl:stylesheet>
-------------- Result --------------
YOURNAME:FIRSTNAME-MIDDLENAME-LASTNAME


Eric
-- 
------------------------------------------------------------------------
Eric van der Vlist                                             Dyomedea
http://xmlfr.org         http://ducotede.com        http://dyomedea.com
------------------------------------------------------------------------


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]