I have a big xml file (>300 mb), I am using notepad++ to find and replace using regular expression. I need to select (and remove) xml node which has multiple children across multiple lines.
<contact attrib="foo">
<child 1></child1 1>
<child 2></child1 2>
...
<child n></child n>
</contact>
I tried searching with
<contact.*?</contact>
this only works if its all on the same line. Having trouble selecting multiple lines. Any suggestions?