URL concatenation in XSL

I am trying to combine a url in xsl. Basically, I take two variables and include them in link fragments to make things dynamic. How to perform this concatenation?

+3
source share
1 answer
<a href="{concat('http://',$string1,'/',$string2)}>link</a>

Depends on variables and destination URL, but you still want to use concat().

+4
source

All Articles