Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


[xsl] RE: fn:contains multiple strings to compare with

From: Tony Nassar <tnassar@---------------->
To:
Date: 11/5/2008 2:22:00 AM
You could use a trick. Sequences returned from a sequence expression are
always flattened and concatenated. So:

for $city in ('Hamburg', 'Coblenz', 'Aachen') return (if
(contains('Hamburger', $city)) then true() else ())

...returns true(), because the empty sequences are simply discarded. OTOH,

for $city in ('Hamburg', 'Coblenz', 'Aachen') return (if
(contains('Frankfurter', $city)) then true() else ())

...is treated as false, as you'll see:

boolean(for $city in ('Hamburg', 'Coblenz', 'Aachen') return (if
(contains('Frankfurter', $city)) then true() else ()))

-----Original Message-----
From: Szabo, Patrick (LNG-VIE) [mailto:patrick.szabo@xxxxxxxxxxxxx]
Sent: Monday, November 03, 2008 3:12 AM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: [xsl] fn:contains multiple strings to compare with

Hi,

I4m using XSLT 2.0 and Saxon 8.

Basicly i want to have something that does this:
contains('$d/ris:organ/text()', 'Hamburg' or 'Koblenz' or 'xxx'...) ===>
Compare 1 String with multpile strings.

instead of that: contains('$d/ris:organ/text()','Hamburg') or
contains('$d/ris:organ/text()','Koblenz')...


transparent
Print
Mail
Like It
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent