Reputation: 1
the match to find email has wrong regex expression, leading to missing emails that should have been otherwise populated in the output.
Below is the query
case when regexp_like(email,'^([a-zA-Z0-9_\-\.]+)@([a-zA-Z0-9_\-\.]+)\.([a-zA-Z]{2,5})$')
The above regex expression doesn't match emails like [email protected] Instead it returns null when such emails are encountered.
Upvotes: 0
Views: 1327
Reputation: 1319
I used this statement and it worked:
select 1
from dual
where regexp_like('[email protected]', '^([a-zA-Z0-9_\.-]+)@([a-zA-Z0-9_\.-]+)\.([a-zA-Z]{2,5})$');
The minus character must be the last one in the [...].
Upvotes: 1