I am writing one program which reads and separate spam and ham emails. Now I am reading it using bufferedreader class of java. I am able to remove any unwanted characters like '(' or '.' etc, using replaceAll() method. I want to remove html tags too, including &. How to achieve this!?
thanks
EDIT: Thanks for the response, but I am already having a regex, how to combine both my needs and put into one. Heres the regex i am using now.
lines.replaceAll("[^a-zA-Z]", " ")
Note: I am getting lines from a txt file. Any other suggestions plss?!