DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Java: RegEx To Remove HTML Tags
// Ref: https://jalbum.net/forum/thread.jspa?forumID=7&threadID=971&messageID=6907
String noHTMLString = htmlString.replaceAll("\\<.*?\\>", "");





