blob: afc79f4f928a1e355822ec624d5212bdc16f0f37 [file] [log] [blame]
(: insert-start :)
declare variable $input-context external;
(: insert-end :)
for $b in $input-context//book
let $e := $b/*[contains(string(.), "Suciu")
and ends-with(local-name(.), "or")]
where exists($e)
return
<book>
{ $b/title }
{ $e }
</book>