I am using a regex to remove HTML tags. I do something like - result.replaceAll("\<.*?\>", "");
However, it does not help me get rid of the img tags in the html. Any idea what is a good way to do that?
|
I am using a regex to remove HTML tags. I do something like - result.replaceAll("\<.*?\>", ""); However, it does not help me get rid of the img tags in the html. Any idea what is a good way to do that? |
|||
| show 6 more comments |
|
To give a more concrete recommendation, use JSoup (or NekoHTML) to parse the HTML into a Java object. Once you've got a |
|||||
|
|
If you cannot use HTML parsers/cleaners then I would at least suggest you to use
OUTPUT
|
|||||||
|
|
Another suggestion is HtmlCleaner |
|||
|
|
|
I'm just re-iterating what others have said already, but this point cannot be over-stated: DO NOT USE REGEXES TO PARSE HTML. There are a 1,000 similar questions on this on SO. Use a proper HTML parser, it will make your life so much easier, and is far more robust and reliable. Take a look at Dom4j, Jericho, JSoup. Please. |
|||
|
|
|
So, a piece of code for you. I use http://htmlparser.sourceforge.net/ to parse HTML. It is not overcomplicated and quite straightforward to use. Basically it looks like this:
That will give you plain text stripped of tags (but no substitutes like & would be fixed). And of course you can do plenty more with this library, like applying filters, visitors, iterating and all the stuff. |
|||
|
|
|
use html parser instead. iterate over the object, print however you like and get the best result. |
||||
|
|
<img src="ping.png">should be removed with your regex. – Howard Jun 14 '11 at 18:13<span>x < 7</span>? You can't parse/process HTML with a regex. See this answer for why: stackoverflow.com/questions/1732348/… – Marc B Jun 14 '11 at 18:14<img src="ping.png" alt=">>>ALT>>>"/>. It really isn't a good idea to use regex for something like HTML. – Howard Jun 14 '11 at 18:32