I've a String from html web page like this:\[code\]String htmlString=<span style="mso-bidi-font-family:Gautami;mso-bidi-theme-font:minor-bidi">President Pranab pay great tributes to Motilal Nehru on occasion of </span>150th birth anniversary. Pranab said institutions evolved by leaders like him should be strengthened instead of being destroyed. <span style="mso-spacerun:yes"> </span>He listed his achievements like his role in evolving of Public Accounts Committee and protecting independence of Legislature from the influence of the Executive by establishing a separate cadre for the Central Legislative Assembly, the first set of coins and postal stamps released at the function to commemorate the event.</p> \[/code\]i need to extract the text from above String ,after extraction my out put should look likeOutPut:\[code\]President Pranab pay great tributes to Motilal Nehru on occasion of 150th birth anniversary. Pranab said institutions evolved by leaders like him should be strengthened instead of being destroyed. He listed his achievements like his role in evolving of Public Accounts Committee and protecting independence of Legislature from the influence of the Executive by establishing a separate cadre for the Central Legislative Assembly, now Parliament. Calling himself a student of history, he said Motilal's Swaraj Party acted as a disciplined assault force in the Legislative Assembly and he was credited with evolving the system of a Public Accounts Committee which is now one of the most effective watchdogs over executive in matters of money and finance. Mukherjee also received the first set of coins and postal stamps released at the function to commemorate the event.\[/code\]For this i have used below logic:\[code\]int spanIndex = content.indexOf("<span");spanIndex = content.indexOf(">", spanIndex);int endspanndex = content.indexOf("</span>", spanIndex);content = content.substring(spanIndex + 1, endspanndex);\[/code\]and my Resultant out put is:\[code\]President Pranab pay great tributes to Motilal Nehru on occasion of\[/code\]I have used Different HTMLParsers,but those are not working in case of j2mecan any one help me to get full description text? thanks .....