Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.6k views
in Technique[技术] by (71.8m points)

regex - Match URL pattern in PHP using a regular expression

I want to match a URL link in a wall post and replace this link with anchor tag. For this I use the regular expression below.

I would like the match four types of URL:

  1. http://example.com
  2. https://example.com
  3. www.example.com
  4. example.com
preg_replace('@(https?://([-w.]+)+(:d+)?(/([w/_.]*(?S+)?)?)?)@',
             '<a href="$1">$1</a>', $subject);

This expression matches only first two types of URL.

If I use this expression for matching a URL pattern, '@(www?([-w.]+)+(:d+)?(/([w/_.]*(?S+)?)?)?)@', it only matches the third type of URL pattern.

How can I match all four typeS of URL patternS with a single regular expression?

See Question&Answers more detail:os

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

1 Answer

0 votes
by (71.8m points)

A complete working example using Nev Stokes' given link:

public function clickableUrls($html){
    return $result = preg_replace(
        '%(([w-]+://?|www[.])[^s()<>]+(?:([wd]+)|([^[:punct:]s]|/)))%s',
        '<a href="$1">$1</a>',
        $html
    );
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...