vote up 0 vote down star

I can't edit XML, I just want to change XML data in an XSLT file.

<xsl:value-of select="Name" disable-output-escaping="yes"/>

The value of XML data is "Northfield Bancorp Inc.(MHC)" and I want to replace it with "Northfield Bancorp Inc." (remove "MHC").

Is there any function available in XSLT which can search and replace the this?

flag

3 Answers

vote up 3 vote down check

If it is just the "(MHC)" at the end of the string you want to remove, this would do:

<xsl:value-of select="
  substring-before(
    concat(Name, '(MHC)'), 
    '(MHC)'
  )
" />

If you want to replace dynamically, you could write a function like this:

<xsl:template name="string-replace">
  <xsl:param name="subject"     select="''" />
  <xsl:param name="search"      select="''" />
  <xsl:param name="replacement" select="''" />
  <xsl:param name="global"      select="false()" />

  <xsl:choose>
    <xsl:when test="contains($subject, $search)">
      <xsl:value-of select="substring-before($subject, $search)" />
      <xsl:value-of select="$replacement" />
      <xsl:variable name="rest" select="substring-after($subject, $search)" />
      <xsl:choose>
        <xsl:when test="$global">
          <xsl:call-template name="string-replace">
            <xsl:with-param name="subject"     select="$rest" />
            <xsl:with-param name="search"      select="$search" />
            <xsl:with-param name="replacement" select="$replacement" />
            <xsl:with-param name="global"      select="$global" />
          </xsl:call-template>
        </xsl:when>
        <xsl:otherwise>
          <xsl:value-of select="$rest" />
        </xsl:otherwise>
      </xsl:choose>
    </xsl:when>
    <xsl:otherwise>
      <xsl:value-of select="$subject" />
    </xsl:otherwise>
  </xsl:choose>
</xsl:template>

Which would be callable as:

<xsl:call-template name="string-replace">
  <xsl:with-param name="subject"     select="Name" />
  <xsl:with-param name="search"      select="'(MHC)'" />
  <xsl:with-param name="replacement" select="''" />
  <xsl:with-param name="global"      select="true()" />
</xsl:call-template>
link|flag
bump for a 1.0 native solution – annakata Jun 17 at 8:53
Yay! :-D – Tomalak Jun 17 at 8:57
You're easily pleased :P – annakata Jun 17 at 8:58
Thank you very much, i tried to solve , but only first option is Working. Second dynamically Template. not seem to be working – Wazdesign 0 secs ago – Wazdesign Jun 17 at 23:16
I've tested it and it works for me. You must be doing something wrong. If you don't get it to work, please post a minimum sample that fails for you. – Tomalak Jun 18 at 8:15
show 2 more comments
vote up 1 vote down

XSLT 2.0 has a replace() function.

If you're stuck with 1.0, there is a template in the standard library that can stand in for the lack of a native function:

http://prdownloads.sourceforge.net/xsltsl/xsltsl-1.2.1.zip http://xsltsl.sourceforge.net/string.html#template.str:subst

link|flag
vote up 1 vote down

another xslt 1.0 template from exslt.org

http://www.exslt.org/str/functions/replace/str.replace.template.xsl

link|flag
You may have to view source to see this. – steamer25 Jun 16 at 21:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.