Here is a sample custom tag i have from a sitemap.xml
<url>
  <loc>http://sitename.com/programming/php/?C=D;O=A</loc>
  <changefreq>weekly</changefreq>
  <priority>0.64</priority>
</url>
There are many entries like this and if you see loc tag it has c=d;0=a at the end.
I want to remove all entries starting with <url> ending with </url> which contains C=D;0=A or similar patterns like that.
The following expression matched the whole of the above specified tag
<url>(.|\r\n)*?<\/url>
but I want to match like what i had specified in the above statement.
How do we form regex to match such conditions(patterns) ?
 
     
     
    