RE: Extract email address from a string

2002-04-01 Thread macnerd
Are you going to use this for spamming. I am curious if people will start ripping email addresses out of WHOIS listings for spam. My ISP listed my email-addr on WHOIS, which I am not happy about, because of the possibility. - Joaquin > -Original Message- > From: [EMAIL PROTECTED] > [m

RE: Extract email address from a string

2002-04-01 Thread Jason Scott Gessner
The following regular expression will match a valid email string... \w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$ - jason scott gessner [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Christopher A. Libby