Hello !
a long time without XML work, IC"BBm a little bit rusty and need help !
I have a sequence that contains words, and another that contains a
sentence. I want to know if there one word that starts the sentenceC"BB&
In Java, that would be :
|List<String> words = ... ; String sentence = ... ; return
words.stream().anyMatch(w -> sentence.startsWith(w)); |
But with XPath / xslt C"BB& ?
|<xsl:variable name="words" as="xs:string"
select="..."/> <xsl:variable name="snetence"
as="xs:string" select="..."/> <xsl:sequence
select="... ? ..." /> |
Thanks in advance,
Christophe
​
|