xsl-list
[Top] [All Lists]

Re: [xsl] Camel case tokenizing

2006-10-24 06:53:57

concat(
upper-case(substring(.,1,1)),
replace (substring(.,2),'[A-Z]',' $0')
)

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