[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

Re: [xsl] Re: xsl--accessing a speciic part of a string


Subject: Re: [xsl] Re: xsl--accessing a speciic part of a string
From: "james walker" <jameswalkerandy@xxxxxxxxxxx>
Date: Thu, 02 Oct 2003 15:09:07 +0100

Is it possible just to take off the last 4 characters from the string instead as it may be "- CP1" or "- CP2" OR "- CP3"?


From: "Dimitre Novatchev" <dnovatchev@xxxxxxxxx>
Reply-To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: [xsl] Re: xsl--accessing a speciic part of a string
Date: Thu, 2 Oct 2003 14:25:08 +0200

"james walker" <jameswalkerandy@xxxxxxxxxxx> wrote in message
news:Law9-F104b2zrhQTZ9v000077fd@xxxxxxxxxxxxxx
> When in template match=prod, I wanted to pull out the value "wanted text"
> which will change according to what prod its under. However, the structure
> of the <text> tags under some <prod> elements are different:
>
> The first example, i need to select the value of "wanted text" within
prod:
>
> <prod position="1.1.1">
> <entrydata columnnumber="6">
> <text>wanted text - cp1</text></entrydata>
> </prod>
>
> The second example, i need to select "wanted text" from the first text tag
> within prod:
>
> <prod position="1.1.1">
> <entrydata columnnumber="6">
> <textlist><text>wanted text - cp1</text><text>wanted text
> -cp2</text></textlist></entrydata>
> </prod>
>
> is their one select statement that could cater for either of these
> situations?? I assume to remove "-cp1" i need to use the string function
> substring before? There will be instances when "wanted text" may have a
> hyphen in anyway.


Use:

substring-before(descendant::text[1], '-')



=====
Cheers,

Dimitre Novatchev.
http://fxsl.sourceforge.net/ -- the home of FXSL




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



_________________________________________________________________ Get Hotmail on your mobile phone http://www.msn.co.uk/msnmobile


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




Current Thread