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?
<a href="{concat('http://',$string1,'/',$string2)}>link</a>
Depends on variables and destination URL, but you still want to use concat().
concat()