This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: counting the number of tokens in a string?


> another newbie question.

Indeed - it last came up about a week ago.

 Is there an easy way to count
> the number of commas in a string? Like this:
> 
> <ITEM cols="col1,col2,col3,col4"/>
> 

string-length(@cols) - string-length(translate(@cols, ',', ''))

The translate() removes the commas, the rest works out how much this
changes the total length.

Michael Kay
Software AG
home: Michael.H.Kay@ntlworld.com
work: Michael.Kay@softwareag.com 


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]