Sorry for the dumb question, but string handling in xsl 1.0 is not one of my strong points. I'm looking for a way of extracting a string held between pseudo html tags. EG.
<xsl:variable name="test">
This is a string <link>http://www.stackoverflow.com</link> and some more stuff here
</xsl:variable>
The idea being to end up with 2 further variables that would contain.
var1 = http://www.stackoverflow.com and var2 = This is a string and some more stuff here
Like I say, sorry it's a dim question. Thanks.