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: Quoting quotes?


> <xsl:value-of select="substring-after('Dean. Well, let's see, 
> we have on
> the bags, Who's on first, What's on second, I Don't Know is 
> on third ... ',
> 'bags')"/>
> 
My usual recommendation is to use variables:

<xsl:variable name="strange-dialect">Dean. Well, let's see...</xsl:variable>
<xsl:value-of select="substring-after($strange-dialect, 'bags')"/>

Mike Kay 


 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]