Is there a good way to remove HTML from a Java string? A simple regex like
replaceAll("\\\\<.*?>", &quo
Worth noting that if you're trying to accomplish this in a Service Stack project, it's already a built-in string extension
using ServiceStack.Text; // ... "The quick brown fox jumps over the lazy dog".StripHtml();
fox