I need a regular expression that can be used with replaceall to replace all the html tags with empty string except any variations of br to maintain the line breaks.
I found the following to replace all html tags <\s*br\s*\[^>]
|
|
You might get some answers that claim to work. Those answers might even work for the particular cases you try them against. But know that regular expressions (which I'm fond of in general) are the wrong tool for the job in this case. And as your project evolves and needs to cover more complex HTML inputs, the regular expression will get more and more convoluted, and there may well come a time when it simply cannot solve your problem anymore, period. Do it the right way from the beginning. Use an HTML parser, not a regex. For reference, here are some related SO posts:
|
|||
|
|
|
If the HTML is known to be valid, then you can use this regex (case-insensitive):
but it can fail in interesting ways if you give it invalid HTML. Also, I took "HTML tags" pretty literally; the above won't cover It's probably better to take a step back, think about why you want to strip out these HTML tags — that is, what you're actually trying to achieve — and then find an HTML-handling library that offers a better way to achieve that goal. HTML cleaning is really a solved problem; you shouldn't need to reinvent it. UPDATE: I've just realized that, even for valid HTML, the above has some major limitations. For example, it will mishandle something like |
||||
|
|