Guys,
I'm trying to match two instances of an email within a web scraping script.
The first sample looks like this:
Within that sample I'm trying to match the following email "pers-zeawm-1181125745@mywebsite.org"
There is also a second match I'd like to make. This time the sample is as follows:
As you can see the email is encoded after the mailto: and I need to extract the same email information.
thanks!
I'm trying to match two instances of an email within a web scraping script.
The first sample looks like this:
Code:
mailto:pers-zeawm-1181125745@mywebsite.org?subject=Aleman%20busca%20mujer%20de%20panama">pers-zeawm-1181125745@mywebsite.org</a> <sup>[<a href="[URL unfurl="true"]http://www.mywebsite.org/about/help/replying_to_posts"[/URL] target="_blank">
Within that sample I'm trying to match the following email "pers-zeawm-1181125745@mywebsite.org"
There is also a second match I'd like to make. This time the sample is as follows:
Code:
Reply to: <a href="mailto:pegslist.org?subject=">pers&#;</a> <sup>[<a href="[URL unfurl="true"]http://www.mywebsite.org/about/help/replying_to_posts"[/URL] target="_blank">
As you can see the email is encoded after the mailto: and I need to extract the same email information.
thanks!