I need to create XSL that checks a "does not contain" condition. For example, my XML is like this:
<Categories>
<category>
<blog>ABC</blog>
<link>http://www.msdn.com</link>
</category>
</Categories>
I want to show every <blog>
where <link>
does not contain "msdn"
. I don't want to use equals because I just want to check part of the link.