Removing everything between a tag (including the tag itself) using Regex / Eclipse
- by dallen
I'm fairly new to figuring out how Regex works, but this one is just frustrating.
I have a massive XML document with a lot of blahblahblah tags. I want to basically remove any and all instances of .
I'm using Eclipse and have tried a few examples of Regex I've found online, but nothing works.
<description>(.*?)</description>
Shouldn't that work?