Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'd like a reg exp which can take a block of string, and find the strings matching the format:

<a href="mailto:x@x.com">....</a>

And for all strings which match this format, it will extract out the email address found after the mailto:. Any thoughts?

This is needed for an internal app and not for any spammer purposes!

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
359 views
Welcome To Ask or Share your Answers For Others

1 Answer

If you want to match the whole thing from :

$r = '`<a([^>]+)href="mailto:([^">]+)"([^>]*)>(.*?)</a>`ism';
preg_match_all($r,$html, $matches, PREG_SET_ORDER);

To fastern and shortern it:

$r = '`<a([^>]+)href="mailto:([^">]+)"([^>]*)>`ism';
preg_match_all($r,$html, $matches, PREG_SET_ORDER);

The 2nd matching group will be whatever email it is.

Example:

$html ='<div><a href="mailto:test@live.com">test</a></div>';

$r = '`<a([^>]+)href="mailto:([^">]+)"([^>]*)>(.*?)</a>`ism';
preg_match_all($r,$html, $matches, PREG_SET_ORDER);
var_dump($matches);

Output:

array(1) {
  [0]=>
  array(5) {
    [0]=>
    string(39) "test"
    [1]=>
    string(1) " "
    [2]=>
    string(13) "test@live.com"
    [3]=>
    string(0) ""
    [4]=>
    string(4) "test"
  }
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...