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

Re: [xsl] Using multiple values stored in a variable


Subject: Re: [xsl] Using multiple values stored in a variable
From: Dimitre Novatchev <dnovatchev@xxxxxxxxx>
Date: Sun, 6 Jan 2013 11:45:18 -0800

On Sun, Jan 6, 2013 at 11:24 AM, Graydon <graydon@xxxxxxxxx> wrote:
> If I'm following this right,
>
> <xsl:when test="some $x in $target-segment satisfies matches($x, $target-term, 'i')">
>     <xsl:text>Found</xsl:text>
> </xsl:when>
>
> You want to test that at least one of the values in the sequence in
> $target-segment satisfies the match.

Which can be simplified to:

$target-segment[matches(., $target-term, 'i')"]


-- 
Cheers,
Dimitre Novatchev
---------------------------------------
Truly great madness cannot be achieved without significant intelligence.
---------------------------------------
To invent, you need a good imagination and a pile of junk
-------------------------------------
Never fight an inanimate object
-------------------------------------
To avoid situations in which you might make mistakes may be the
biggest mistake of all
------------------------------------
Quality means doing it right when no one is looking.
-------------------------------------
You've achieved success in your field when you don't know whether what
you're doing is work or play
-------------------------------------
Facts do not cease to exist because they are ignored.
-------------------------------------
Typing monkeys will write all Shakespeare's works in 200yrs.Will they
write all patents, too? :)
-------------------------------------
I finally figured out the only reason to be alive is to enjoy it.


Current Thread