Subject: Re: Stripping white space
From: David Carlisle <davidc@xxxxxxxxx>
Date: Fri, 30 Mar 2007 18:15:23 +0100
|
> On 30/03/07, David Carlisle <davidc@xxxxxxxxx> wrote:
> >
> >
> > > select="substring-after(normalize-space(.),',')"/>
> >
> > what you want there is
> >
> > select="normalize-space(substring-after(.),',')"/>
> >
>
yes I did, did you have a comment? :-)
As is obvious when I saw your reply (but not apparently when I wrote the
original) I swapped the function names but not their arguments, so that
should have been
select="normalize-space(substring-after(.,','))"/>
David
|