Subject: Re: select first word
From: Florent Georges <lists@xxxxxxxxxxxx>
Date: Tue, 18 Dec 2007 17:57:59 +0100 (CET)
|
Abel Braaksma wrote:
> <xsl:value-of select="
> translate(
> substring-before(
> substring-before(.,' '), ', '),
> $from, $to)" />
If I am right (if I remember correctly) the input doesn't always have
space or comma. So I would use the following instead (or the result
could be empty):
translate(replace(., '([^, ]+).*', '$1'), $from, $to)
Regards,
--drkm
_____________________________________________________________________________
Ne gardez plus qu'une seule adresse mail ! Copiez vos mails vers Yahoo! Mail http://mail.yahoo.fr
|