|
Subject: Re: [xsl] Formatting string From: Abel Braaksma <abel.online@xxxxxxxxx> Date: Wed, 16 May 2007 14:13:49 +0200 |
Something like:
<xsl:sequence select="replace($input, '[A-Z]', '$0 ')" />
Or, more precisely (Lu are all possible uppercase letters, including the ones with diacritics etc):
<xsl:sequence select="replace($input, '\p{Lu}', '$0 ')" />
or
<xsl:sequence select="replace($input, '.\p{Lu}', '$0 ')" />| Current Thread |
|---|
|
| <- Previous | Index | Next -> |
|---|---|---|
| Re: [xsl] Formatting string, Abel Braaksma | Thread | Re: [xsl] Formatting string, Joe Fawcett |
| Re: [xsl] Formatting string, Abel Braaksma | Date | RE: [xsl] Calling a java method in , Michael Kay |
| Month |