I just want to know if it\'s possible to use regular expressions in the match attribute of the xsl:template element. For example, suppose I have th
match
xsl:template
In XSLT 1.0 (and 2.0, too), for your example (it's not a regex, though):
and to achieve an end-of-string match:
In XSLT 2.0 you can of course use the matches() function in place of contains().
matches()
contains()