xsl-list
[Top] [All Lists]

Re: [xsl] How to substitute a portion of the text value of an element

2008-10-07 17:09:03
Sorry, wasn't paying attention to the whole problem, just the
specific question.

Will the following do what you want?

   <xsl:copy>
     <xsl:variable name="regularizedMe" select="translate( ., '/', '\')"/>
     <xsl:variable name="regularizedOld" select="translate( $old, '/', '\')"/>
     <xsl:value-of select="substring-before( $regularizedMe, $regularizedOld 
)"/>
     <xsl:value-of select="$new"/>
     <xsl:value-of select="substring-after( $regularizedMe, $regularizedOld )"/>
   </xsl:copy>


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