I was tasked with modifying an xsl file and I know very little about xsl/xml.
I need to read the value of a node and then determine if it contains a string value. I have been researching xpath and the contains function but I am having problems.
I found this link on here: I think it solves my problem because I was using this at the top of my xsl file:
<xsl:stylesheet xmlns:xsl="
and it says I need to use:
<xsl:stylesheet version="1.0" xmlns:xsl="
However, I do use "eval" and according to the thread I cited, I can't if I use the second refernce. I don't want to modify the xsl file too much.
Is there any other options or can I do my string test without using the contains function?
I need to read the value of a node and then determine if it contains a string value. I have been researching xpath and the contains function but I am having problems.
I found this link on here: I think it solves my problem because I was using this at the top of my xsl file:
<xsl:stylesheet xmlns:xsl="
and it says I need to use:
<xsl:stylesheet version="1.0" xmlns:xsl="
However, I do use "eval" and according to the thread I cited, I can't if I use the second refernce. I don't want to modify the xsl file too much.
Is there any other options or can I do my string test without using the contains function?