xsl-list
[Top] [All Lists]

Re: [xsl] Counting occurences of a character in a string

2008-04-01 15:12:09
The XSLT1 way?
string-length($s) - string-length(translate($s, 'X', ''))

At 00:01 2/04/2008, you wrote:
Hello,

in XSLT 2, is there an easier or more efficient way to count the
occurrences of a certain character (here: 'X') in a string $s than

string-length( string-join( tokenize( $s, "[^X]+" ), "" ) )

?

I'm sure there must be, I just don't see it at the moment...

-Christian


--~------------------------------------------------------------------
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>
--~--



--~------------------------------------------------------------------
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>
--~--