Concatenation in XPATH

0
Hi,   Is there a function to concatenate a string in XPATH ? I would like to do something like (URL is the field in the entity) : [concat(URL, '/') = 'https://google.com/']   thanks
asked
1 answers
0

I am able to type [URL + '/' = 'https://google.com'] without error.

 

The slash could be truncated from the second value by using substring($URL, 0, length($URL) - 1), though this would be less neat.

answered