How can I use &
(the ampersand character) in an XQuery concat
statement? I'm using eXist DB and this works:
concat("Marvin ", "and", " Peter")
but this doesn't:
concat("Marvin ", "&", " Peter")
I'm getting the error: expecting '"', found '&'
Escaping the ampersand with a \
doesn't work.
How can I use & (the ampersand character) in an Xquery concat statement? I'm using eXist DB and this works: concat("Marvin ", "and", " Peter") but this doesn't: concat("Marvin ", "&", " ...
– Stope