[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

[xsl] Query string syntax


Subject: [xsl] Query string syntax
From: Mike Ferrando <mikeferrando@xxxxxxxxx>
Date: Thu, 27 Dec 2001 10:38:18 -0800 (PST)

Friends,
I have a question.

I would like to select all names that have initials not seperated by
a space. Such as:

A.A. Peters

Could someone give me the syntax for searching for such a string?

The section from my stylesheet I include below.

Thanks,
Mike F.

<xsl:variable name="qq">???</xsl:variable>

<xsl:for-each select="//C02">
  <xsl:variable name="getit" select="."/>
    <xsl:choose>
      <xsl:when test="contains($getit, $qq)">
        <TR>
          <TD>
            <FONT size="+2">
              <xsl:value-of select="$getit"/>
            </FONT>
          </TD>
        </TR>
      </xsl:when>
    </xsl:choose>
</xsl:for-each>


__________________________________________________
Do You Yahoo!?
Send your FREE holiday greetings online!
http://greetings.yahoo.com

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



Current Thread