Regex for Mail Extractor

Hassmaske

A-Parser Pro License
A-Parser Pro
Hello @ all
the support in telegram cant help me about this problem.
I have a a Tast, which give me the output like these:
Conrad Electronic,Hasenheide 14-15 Kreuzberg, Nähe U-Bahn Hermannplatz, 10967 Berlin,https://www.conrad.de/,https://www.conrad.de/de/ueber-conrad/rechtliches/impressum.html

I want extract the Mails from "https://www.conrad.de/" and from "https://www.conrad.de/de/ueber-conrad/rechtliches/impressum.html".
So i try to make it with the regex option. But there are no way to set it to "g" only to "i" "s" and "is".
It look like these:
upload_2022-2-24_5-14-5.png

Use this regex:
[(http(s)?):\/\/(www\.)?a-zA-Z0-9@:%._\+~#=]{2,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_\+.~#?&//=]*)

How can i solfe this problem?

Thanks for the help
 
1. Update A-Parser to 1.2.1457
2. Use regex:
Code:
([(http(s)?):\/\/(www\.)?a-zA-Z0-9@:%._\+~#=]{2,256}\.[a-z]{2,6}\b[-a-zA-Z0-9@:%_\+.~#?&//=]*),([(http(s)?):\/\/(www\.)?a-zA-Z0-9@:%._\+~#=]{2,256}\.[a-z]{2,6}\b[-a-zA-Z0-9@:%_\+.~#?&//=]*)
3. Use 2 HTML::EmailExtractor
4. Override Query format like on screenshot:
2022-02-25-20-31-46.png
 
Ok this works
upload_2022-2-26_6-19-33.png

I try it with the number like this line:
Conrad Electronic,Hasenheide 14-15 Kreuzberg, Nähe U-Bahn Hermannplatz, 10967 Berlin,https://www.conrad.de/,https://www.conrad.de/de/ueber-conrad/rechtliches/impressum.html,+49724393741
This works for me
But when i try it with this line:
Conrad Electronic,Hasenheide 14-15 Kreuzberg, Nähe U-Bahn Hermannplatz, 10967 Berlin,https://www.conrad.de/,+49724393741,https://www.conrad.de/de/ueber-conrad/rechtliches/impressum.html
But this dosent work for me.
I try it with a new Regex part "query3" and change it by the "Query format" to "$query.query3" but these dosent work for me
upload_2022-2-26_6-23-49.png

Dose this work too with the regex or is this not posible how i try it?
 
Back
Top