- Регистрация
- 14.02.2019
- Сообщения
- 34
- Благодарностей
- 2
- Баллы
- 8
Hi everybody,
I need your help for regex:
I want to extract email in webpage DOM, actually i use this regex that working fine :
[a-zA-Z0-9._%-]+\@[a-zA-Z0-9.-]+\.[a-zA-Z]+
But sometime there is in page source code this element : [email protected] (it's css or something else but not email address)
I would like to exclude this element from my regex (for example not .png)
How i can do that ??
Thank for your help
I need your help for regex:
I want to extract email in webpage DOM, actually i use this regex that working fine :
[a-zA-Z0-9._%-]+\@[a-zA-Z0-9.-]+\.[a-zA-Z]+
But sometime there is in page source code this element : [email protected] (it's css or something else but not email address)
I would like to exclude this element from my regex (for example not .png)
How i can do that ??
Thank for your help