I have some code in the following layout,i m using textcrawler to do a find and replace
<a>
Name=LineA
epsium
ask
answer
line=10
color=red
</a>
<a>
Name=LineB
Color=Blue
</a>
...
Now the question is what regular expression i need to use so as to remove the second block of code between <a> and </a>
<a>.*?</a>gets the first block. And you don't need parenthesis. – sln Sep 30 '11 at 15:27<a>(\s*Name=LineB.*?)</a>or<a>(\s*Name=LineB[\S\s]*?)</a>? – sln Sep 30 '11 at 15:38