Which string class is to use when we want to remove an email address from a string.

need help and i am a newbie in java.

thanks

link|improve this question
what do you mean, like get "email@example.com" from "my email address is email@example.com and my phone number is 555-123-4567"? – Jake223 Oct 4 '11 at 0:27
feedback

1 Answer

You can use the String class. It has a few methods which are helpful, such as replaceAll, and replaceFirst.

You'll need a good regular expression to capture the email address part of the String. This might be helpful.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.