[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: creating a string after counting charatercs

Subject: RE: creating a string after counting charatercs
From: Dimitre Novatchev <dnovatchev@xxxxxxxxx>
Date: Tue, 7 Jan 2003 05:39:52 -0800 (PST)
creating a string in c
---- Stuart Brown <sbrown@xxxxxxxxxxx> wrote:

> > 
> > I´ve got the following problem: I want to check an attribute 
> > value for its
> > length (e.g. 17 chars) and then create a string with 17 identical
> > characters, like
> > "_________________". The string-length check on my attribute 
> > works pretty
> > well, but how do I get the string?
> >
> 
> Try creating a global variable of the repeated characters to the 
> maximum conceivable required length. You can then use your obtained 
> string-length to substring this:

It is not necessary to know the maximum length of the string to
produce.

Using FXSL template "iter" one simply writes the following:

<xsl:stylesheet version="1.0" 
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
 xmlns:myAppendChar="f:myAppendChar" 
 exclude-result-prefixes="xsl myAppendChar">

 <xsl:import href="iter.xsl"/>
 
 <xsl:output omit-xml-declaration="yes"/>
  
  <myAppendChar:myAppendChar/>
  
  <xsl:template match="/">
  
   <xsl:variable name="vAppendChar" 
        select="document('')/*/myAppendChar:*[1]"/>
   
    <xsl:call-template name="iter">
      <xsl:with-param name="pTimes" select="1000"/>
      <xsl:with-param name="pFun" select="$vAppendChar"/>
      <xsl:with-param name="pX" select="''"/>
    </xsl:call-template>
  </xsl:template>
  
  <xsl:template match="myAppendChar:*">
    <xsl:param name="arg1"/>
    
    <xsl:value-of select="concat($arg1, '_')"/>
  </xsl:template>
    
</xsl:stylesheet>

As expected, in this case the result is a string of 1000 characters
"_'.


Hope that this really helped.





=====
Cheers,

Dimitre Novatchev.
http://fxsl.sourceforge.net/ -- the home of FXSL

__________________________________________________
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com

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


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.