php perl風格 Regex

來源:互聯網
上載者:User

/* 尋找字串是Regex的主要應用。在php中,可以作用的並且用於匹配perl風格Regex的
    主要函數是 preg_match()。該函數原型如下
    int preg_match(string pattern, string subject[,array matches[,int flags]])
    在subject中搜尋pattern。$matches[0]將包含與整個模式比對的文本,
    $matches[1]將包含與第一個捕獲的括弧中的子模式所匹配的文本。依此類推
*/
    $text = "PHP is the web scripting language of choice.";
    print("在文本/"{$text}/" 中搜尋 /"php/"/n");
    if (preg_match("/php/i", $text)){    //模式定界符後面的"i"表示搜尋時不區分大水寫
        print "->找到一個匹配/n/n";
    }else{
        print "->未找到模式/n/n";
    }

    $text = "PHP is the website scripting language of choice.";
    print("在文本/"{$text}/" 中搜尋單詞 /"web/"/n");
    if(preg_match("//bweb/b/i", $text)){  //模式定界符後面的"/b"表示單詞的邊界,因此只有獨立的單詞"web"才會匹配
        print "->找到一個匹配/n/n";
    }else{
        print "->未找到模式/n/n";
    }

    print("在文本/"{$text}/" 中搜尋單詞 /"web/"/n");
    if(preg_match("/web/i", $text)){
        print "->找到一個匹配/n/n";
    }else{
        print "->未找到模式/n/n";
    }

    $text = "http://www.php.net/index.html";
    print("從UR/"{$text}/" 中取得主機名稱和網域名稱/n");
    if(preg_match("/^(http:////)?([^//]+)/i", $text, $matches)){ //模式中圓括弧括起來的為子運算式
        $host = $matches[2];
        print "->主機名稱為:$host/n/n";

        preg_match("/[^/.//]+/.[^/.//]+$/",$host, $matches);  //從主機名稱中取得後面兩段
        print "->網域名稱為:{$matches[0]}/n";
    }
?>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.