I have this HTML input:
<font size="5"><p>some text</p>
<p> another text</p></font>
I'd like to use regex to remove the HTML tags so that the output is:
some text
another text
Can anyone suggest how to do this with regex?
|
|
You can go with HTML parser called Jericho Html parser. you can download it from here - http://jericho.htmlparser.net/docs/index.html Jericho HTML Parser is a java library allowing analysis and manipulation of parts of an HTML document, including server-side tags, while reproducing verbatim any unrecognized or invalid HTML. It also provides high-level HTML form manipulation functions. The presence of badly formatted HTML does not interfere with the parsing |
|||
|
|
|
Would this do?
|
|||||||||||||||||
|
|
Use a HTML parser. Here's a Jsoup example.
Result: some text another text Or if you want to preserve newlines:
Result: some text another text Jsoup offers more advantages as well. You could easily extract specific parts of the HTML document using the See also: |
||||
|
|
|
If you use Jericho, then you just have to use something like this:
Of course you can do the same even with an
|
|||
|
|