xsl-list
[Top] [All Lists]

RE: how match more than one node or tag

2005-03-29 08:11:31
<xsl:template match="part1 |shema | mytag | part2">

-----Original Message-----
From: henry human [mailto:henry_human(_at_)yahoo(_dot_)de] 
Sent: Tuesday, March 29, 2005 10:02 AM
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: [xsl] how match more than one node or tag

hi, is that possible to make 
a tempplate and match more than one tag:
f.i:
i will replace in <part1> ,<shema>,<mytag>, <part2>
all  . with a :

<document>
<part1>
<name>u.bb</name>
</part1>
<mytag>er.jg</mytag>
<part2>m.bb</part>
<shema> ss.ff</shema>
</document>
and i wont define for each tag or node own template
like this:

<xsl:template match="part1">

<xsl:call-template name="part1">
<xsl:with-param name="name" select="name"/>
<xsl:with-param name="search_for" select="'.'"/>
<xsl:with-param name="replace_Out" select="':'"/>
</xsl:call-template>
</xsl:template>

<xsl:call-template name="part2">
<xsl:with-param name="name" select="name"/>
<xsl:with-param name="search_for" select="'.'"/>
<xsl:with-param name="replace_Out" select="':'"/>
</xsl:call-template>
</xsl:template>

<xsl:template match="shema">
.....

thank yo








        

        
                
___________________________________________________________ 
Gesendet von Yahoo! Mail - Jetzt mit 250MB Speicher kostenlos - Hier
anmelden: http://mail.yahoo.de

--~------------------------------------------------------------------
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>