Lets assume we have xml:
<tag1> text <tag2> { <tag3> name1 </tag3>:<tag4><val>value1</val>;</tag4> <tag3> name2 </tag3>:<tag4><val>value2</val>;</tag4> }</tag2> </tag1>
How to remove whole line with name1 and value1 (from <tag3> to </tag4>) with xslt?
I have no problem to remove tag3 and tag4 but this colon (':') character is problematic for me.