Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
11  
Don't try to parse HTML with regular expressions. It will only end in tears. – Jon Skeet Nov 2 '10 at 7:44
1  
Please read this answer to a similar question: stackoverflow.com/questions/1732348/… – Sean Patrick Floyd Nov 2 '10 at 7:48
1  
As your title is a question: No, you don’t need a regular expression. – Gumbo Nov 2 '10 at 7:49

4 Answers

up vote 2 down vote accepted

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

share|improve this answer

Would this do?

String input = "<font size=\"5\"><p>some text</p>\n<p>another text</p></font>";
String stripped = input.replaceAll("<[^>]*>", "");
System.out.println(stripped);

Demo at ideone.com.

share|improve this answer
2  
The > is allowed as a literal character in quoted attribute values. – Gumbo Nov 2 '10 at 7:50
Before this tag I hade Head , tilte all those things are there by using above snippet I am getting head,titile text also.i need only this part of text only I tried with – ADIT Nov 2 '10 at 7:51
private static final Pattern BetweenTags = Pattern.compile("<p>([^<]+?)</p>+"); – ADIT Nov 2 '10 at 7:52
1  
Ok, if it was something as simple, as stripping tags in uncomplicated HTML, I may have chosen to go with a regexp. In your scenario, I believe that you're better off with a proper parser. – aioobe Nov 2 '10 at 7:56
1  
May I suggest input.replaceAll("<[^>]+>",""); – BjornS Nov 2 '10 at 9:37

Use a HTML parser. Here's a Jsoup example.

String input = "<font size=\"5\"><p>some text</p>\n<p>another text</p></font>";
String stripped = Jsoup.parse(html).text();
System.out.println(stripped);

Result:

some text another text

Or if you want to preserve newlines:

String input = "<font size=\"5\"><p>some text</p>\n<p>another text</p></font>";
for (String line : input.split("\n")) {
    String stripped = Jsoup.parse(line).text();
    System.out.println(stripped);
}

Result:

some text
another text

Jsoup offers more advantages as well. You could easily extract specific parts of the HTML document using the select() method which accepts jQuery-like CSS selectors. It only requires the document to be semantically well-formed. The presence of the since 1998 deprecated <font> tag is already not a very good indication, but if you know the HTML structure in depth detail beforehand, it'll still be doable.

See also:

share|improve this answer

If you use Jericho, then you just have to use something like this:

public String extractAllText(String htmlText){
    Source source = new Source(htmlText);
    return source.getTextExtractor().toString();
}

Of course you can do the same even with an Element:

for (Element link : links) {
  System.out.println(link.getTextExtractor().toString());
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.