G
Guest
we have the html text of an email and wish to search for banned content we use
[^@\-\.]\bsomedomain\.com\b
this will pick out somedomain.com but not (e-mail address removed) which is correct
but it will find (e-mail address removed)
how could you alter the above expression to exclude all words that contain an @ not knowing where it maybe in the string
[^@\-\.]\bsomedomain\.com\b
this will pick out somedomain.com but not (e-mail address removed) which is correct
but it will find (e-mail address removed)
how could you alter the above expression to exclude all words that contain an @ not knowing where it maybe in the string