[xsl] Reply to Wolfgang Laun and "G. Ken Holman" re Question on search and replace in XSL (ID's : <CANaj1LdOU1Wszk90PbR_5qSqsrVqrR5bc83cyWfKYmBt_VcB=A@mail.gmail.com> &<7.0.1.0.2.20120404172322.023fbf88@wheresmymailserver.com>)

Subject: [xsl] Reply to Wolfgang Laun and "G. Ken Holman" re Question on search and replace in XSL (ID's : <CANaj1LdOU1Wszk90PbR_5qSqsrVqrR5bc83cyWfKYmBt_VcB=A@mail.gmail.com> &<7.0.1.0.2.20120404172322.023fbf88@wheresmymailserver.com>)
From: "Peterson, Melanie S." <MPeterson@xxxxxxxxxxxxxxx>
Date: Fri, 6 Apr 2012 15:18:28 +0000
Ken, I'm using version 1.0, but there's no reason I couldn't switch to 2.0 if
that gets me somewhere. I don't really understand your comment about the code
already creating two columns.  The output is the two fields, one on top of the
other.

Wolfgang,  Sorry - I should've specified - the fields can have multiple
semi-colons between them, so the recursive code needs to stay.  But when I try
to insert <td> and </td> in the recursive code, it doesn't work.  The error
message is: The 'xsl:call-template' start tag on line 161 position 8 does not
match the end tag of 'td'. Line 163, position 11.  I don't know how to get
around this.   Here's what I've tried:

<xsl:template name="APNameSplit">
  <xsl:param name="text" select="string('')"/>
  <xsl:param name="find" select="string(';')"/>
  <xsl:choose>
    <xsl:when test="$find = ''">
      <td>
        <xsl:value-of select="$text"/>
      </td>
    </xsl:when>
    <xsl:when test="contains($text,$find)">
      <td>
      <xsl:value-of select="substring-before($text,$find)"/>
      </td>
      <xsl:call-template name="APNameSplit">
        <xsl:with-param name="text" select="substring-after($text,$find)"/>
        </td>
this line is where intellisense is complaining
        <xsl:with-param name="find" select="$find"/>
      </xsl:call-template>
    </xsl:when>
    <xsl:otherwise>
      <td>
        <xsl:value-of select="$text"/>
      </td>
    </xsl:otherwise>
  </xsl:choose>
</xsl:template>

<xsl:template match="APName">
  <xsl:call-template name="APNameSplit">
    <xsl:with-param name="text" select="."/>
    <xsl:with-param name="find" select="string(';')"/>
  </xsl:call-template>
</xsl:template>

All your help is much appreciated!

Melanie Peterson
Project Coordinator/Systems Developer
Kramer Levin Naftalis & Frankel LLP
1177 Ave. of the Americas
New York, NY 10036
212-715-7738



Melanie S. Peterson

Project Coordinator/Systems Developer
Kramer Levin Naftalis & Frankel LLP
1177 Avenue of the Americas
New York, New York 10036
Tel: 212-715-7738
Fax: 212-715-8000
Email: MPeterson@xxxxxxxxxxxxxxx
<http://www.kramerlevin.com/>


This communication (including any attachments) is intended solely for the
recipient(s) named above and may contain information that is confidential,
privileged or legally protected. Any unauthorized use or dissemination of this
communication is strictly prohibited. If you have received this communication
in error, please immediately notify the sender by return e-mail message and
delete all copies of the original communication. Thank you for your
cooperation.

Current Thread