xsl-list
[Top] [All Lists]

Re: Count number of dots in the given string

2005-07-12 02:32:14
<xsl:variable name="str" select="'MSH-12.2.3'" />

<xsl:variable name="nrdots" select="string-length($str) - string-length(translate($str, 
'.', ''))" />

or

<xsl:variable name="nrdots" select="string-length(translate($str, translate($str, '.', 
''), ''))" />

Cheers,
Geert

Lakshmi narayana wrote:

Hi I want to count number of dots in the given string. for example string : MSH-12.2.3
The template should return 2 because two dots are there in the string.
Can any one send me th xslt code to count number of dots in the string.

Thanks
Laxmi Narayana

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



--
Geert(_dot_)Josten(_at_)Daidalos(_dot_)nl
IT-consultant at Daidalos BV, Bleiswijk (NL)

http://www.daidalos.nl/
tel:+31-(0)10-850 12 00
fax:+31-(0)10-850 11 99

GPG: 1024D/12DEBB50

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



<Prev in Thread] Current Thread [Next in Thread>