Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


[xsl] Tracking position in recursive functions?

From: himanshu padmanabhi <himanshu.padmanabhi@--------->
To:
Date: 4/2/2009 6:56:00 AM
Hi,

These is just the part of str::tokenize.

I just want to ask how to track "position" in recursive functions like
"str:_tokenize-delimiters"?

"position()" isn't solving the purpose.

"$args" value is "-p 10 -t 20 abcd.domain.com" which I want to
tokenize by space.

What my final goal is,
If called with position()=1 then print 2nd pos = 10
If called with position()=2 then print 4nd pos = 20
If called with position()=3 then print 5nd pos = abcd.domain.com
(There are 3 xml elements so str:tokenize can be called 3 times or I
call it 1 time and save 2,4,5 values in variables and can print it in
calling template.)

Currently it is printing all the tokens each time.
Tracking 'position' in recursive function also can give me answer like
2nd,4th,5th position token.

<xsl:stylesheet version="1.0"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                xmlns:str="http://exslt.org/strings"
                extension-element-prefixes="str">

<xsl:template name="str:_tokenize-delimiters">
  <xsl:param name="args" />
  <xsl:param name="delimiters" />

  <xsl:variable name="delimiter" select="substring($delimiters, 1, 1)" />

  <xsl:choose>
        <xsl:when test="not($delimiter)" >
            <option><xsl:value-of select="$args" /></option>
        </xsl:when>

    <xsl:when test="contains($args, $delimiter)">
        <option><xsl:value-of select="substring-after($args,
$delimiter)" /></option>
        <xsl:if test="not(starts-with($args, $delimiter))">
            <xsl:call-template name="str:_tokenize-delimiters">
                <xsl:with-param name="args"
select="substring-before($args, $delimiter)" />
                <xsl:with-param name="delimiters"
select="substring($delimiters, 2)" />
            </xsl:call-template>
        </xsl:if>

        <xsl:call-template name="str:_tokenize-delimiters">
            <xsl:with-param name="args" select="substring-after($args,
$delimiter)" />
            <xsl:with-param name="delimiters" select="$delimiters" />
        </xsl:call-template>
    </xsl:when>

    <xsl:otherwise>
        <xsl:call-template name="str:_tokenize-delimiters">
            <xsl:with-param name="args" select="$args" />
            <xsl:with-param name="delimiters"
select="substring($delimiters, 2)" />
        </xsl:call-template>
    </xsl:otherwise>
  </xsl:choose>
</xsl:template>

</xsl:stylesheet>
---------------------------------
Thanks and Regards,
Himanshu Padmanabhi


transparent
Print
Mail
Like It
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent