Java tutorial
//package com.java2s; public class Main { public static String delHtml(String str) { String info = str.replaceAll("\\&[a-zA-Z]{1,10};", "").replaceAll("<[^>]*>", ""); info = info.replaceAll("[(/>)<]", ""); return info; } }