How can I remove special html tag from a string? Here is the string

String testString ="It's the club that is discussing this with the player's agent, but no decision has been taken," said Ancelotti, who briefly coached Beckham during a loan spell at AC Milan.
divv class="og_rss_groups">

I have to remove divv class="og_rss_groups"></divv from the above string. How it is possible?

link|improve this question

1  
If you are looking for parsing HTML using Java try this : htmlparser.sourceforge.net – Pratik Jan 3 at 12:03
If you put in code, you might want to post actually compiling code. Additionally, in the above code, there is no HTML tag. – Akku Jan 3 at 12:07
feedback

3 Answers

up vote 0 down vote accepted

String testString ="It's the club that is discussing this with the player's agent, but no decision has been taken," said Ancelotti, who briefly coached Beckham during a loan spell at AC Milan. divv class=\"og_rss_groups\">"; String result = testString.replaceAll("whattoreplace","");

link|improve this answer
feedback

You can use HTMLEntities. It will replace your quotes with HTML entities.

link|improve this answer
feedback

Did you try substring function of String class ?. You should also check why the un-desired string is coming at the first place.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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