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]
Other format: [Raw text]

new to XSl/variable usage


Hi,

 I am stumped at trying to trying to remove a character(') and replace it with "
--quot" from a given string and print it. I want to make it so that the change
is for the whole string.

 I am dong the following

<xsl:for-each select="contains($objName,'&quot;')">


      <xsl:variable name = "beginStr" select = "substring-before($objName,'
&quot;')"/>
      <xsl:variable name = "repStr" select = "--quot--"></xsl:variable>
      <xsl:variable name = "endStr" select = "substring-after($objName,'
&quot;')"/>
      <xsl:variable name = "finStr" select = "concat
($beginStr,$repStr,$endStr)"/>

    </xsl:for-each>

here when I try to access finStr ouside I get error, so if I declare the
variable ouside the for loop I get the error defined twice.  kindly help me

Regards
Rajesh J



 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]