php 正則 不包含某字串的Regex

來源:互聯網
上載者:User

常見函數 strstr($str, “abc”);
正則匹配 preg_match(”/(abc)?/is”, $str);
但是要匹配一個字串中,不包含某字串,用正則就比較麻煩了
如果不用正則 !strstr($str, “abc”); 就可以解決問題了
但是用正則呢,就只有這樣了,”/^((?!abc).)*$/is”
//------------------------------------------------ 複製代碼 代碼如下:<?php
$str = "dfadfadf765577abc55fd";
$pattern_url = "/^((?!abc).)*$/is";
if (preg_match($pattern_url, $str)){
echo "不含有abc!";
}else{
echo "含有abc!";
}
?>

//------------------------------------------------
結果為:false,含有abc!
$str = “2b3c4d5c”;
注意:[^(abc)] 這個文法是逐個檢查$str中的字元是否不在 a b c中,
preg_match(”/[^(abc)]/s”, $str, $arr);
其中字元 2 就不在 a b c 中,所以$arr傳回值為2;
同時匹配,包含字串 “abc”,而且不包含字串 “xyz”
“/(abc)[^((?!xyz).)*$]/s”

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.