vote up 1 vote down star

I am trying to match emails from one of my own sites using a regular expression. Using preg_match_all($pattern,$site,$array) the results I get are duplicate. So for example, using:

$pattern = '/[\w-]+@([\w-]+\.)+[\w-]+/i';

I get:

Array
(
    [0] => uk@example1.com
    [1] => uk@example2.com
    [2] => sales@woot.com
    [3] => sales@woot.com
    [4] => info@regex.com
    [5] => info@regex.com
    [6] => direct@yadayada.com.au
    [7] => direct@yadayada.au
    [8] => adrian@blahblah.com
    [9] => adrian@blahblah.com
)

So, why am I getting duplicates? Is this a problem with my regex?

The string I am searching is a URL using the file_get_contents() method. I've checked the string to make sure it wasn't pulling the page twice.

flag

45% accept rate
2  
What is the string you're searching? – balpha Jul 8 at 15:12
As above, string would help – Ian Elliott Jul 8 at 15:13

2 Answers

vote up 6 vote down check

if you are matching HTML you are probably matching both the href in the a tag and the content of the a tag.

<a href="mailto:uk@example1.com">uk@example1.com</a>
link|flag
OMG haha you're probably right! – Graham Jul 8 at 15:25
1  
try using /mailto:([\w-]+@([\w-]+\.)+[\w-]+)/gi to get just the mailto value – Josh Jul 8 at 15:35
vote up 2 vote down

If you're dealing with a small enough dataset, you could just throw the array into array_unique() which will you give you back an array with the duplicates removed.

link|flag
Of course it's probably better to understand what's going wrong but I figured I'd throw it out there :) – Mark Biek Jul 8 at 16:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.