Showing posts with label regular expression. Show all posts
Showing posts with label regular expression. Show all posts

Friday, September 05, 2008

Regular Expression in Java to Strip HTML Tags

Regular Expression in Java to Strip HTML Tags; just for my own reference:

sMyString = sMyString .replaceAll("\\<.*?>","");