Hello,
I found the email and now, I want to create a regex to catch the activation link.
It's myhtml :
How can I do to exract the href in Zennoposter.
I have this regex :
it's match but zennoposter doesn't find/give me the way to select the capture group.
I made an online tester
The result in project maker :
could you help me please ?
I found the email and now, I want to create a regex to catch the activation link.
It's myhtml :
HTML:
<a href="https://lin.com/activation/NX1B4s3xh1ip" target="_blank" style="-ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; cursor: pointer; word-wrap: break-word; word-break: break-word; color: #FFFFFF; text-decoration: none;">Specific word</a>
I have this regex :
HTML:
.*href=\"(.*?)\".*>Specific word.*
I made an online tester
The result in project maker :
could you help me please ?