|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Find second character in a string
Hi Everybody, Someone know if that function "contains" permitted to make to ask or to especified if character repeat in a string? Example: I can know if repeat caracter ' ' (espace) in a string (Clark Jenier Foz) this example exist 2 spaces in a string. I need to make this because, I am making a script that get that last name (in Brazil - "Foz") and converted to upper. <xsl:choose> <xsl:when test="contains(substring-after($var-nome-preparado, ' '), ' ')"> <xsl:call-template name="upper-texto"> <xsl:with-param name="texto" select="substring-after(substring-after($var-nome-preparado, ' '), ' ')"/> </xsl:call-template> <xsl:text>, </xsl:text> <xsl:value-of select="substring-before(substring-after(substring-after($var-nome-preparado , ' '), ' '), ' ')"/> </xsl:when> </xsl:choose> When a run this example it return me only string "FOZ" because " <xsl:value-of select="substring-before(substring-after(substring-after($var-nome-preparado , ' '), ' '), ' ')"/> " I see a ease resolution this, using scripts but I don't can to use. Thanks for help! Paulo Henrique Bermejo Florianópolis/SC - Brazil. XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|






