php中關於Regex應用的詳解

來源:互聯網
上載者:User
Regex

1、替換“/\d/”,“#”,$str:Regex\d 數字,替換為#,字串

$str = "2hello 5li 6lei";echo preg_replace("/\d/","#",$str);

2、拆分 Regex,字串

$str = "2hello 5li 6lei";var_dump(preg_split("/\d/",$str));

3、匹配所有滿足正則的字串

$str = "2hello 5li 6lei";preg_match_all("/\d",$str,$arr);     //Regex,定義的字串,數組var_dump($arr);                            //匹配滿足所有正則的字串

4、匹配第一個滿足正則的字串

$str = "2hello 5li 6lei";preg_match("/\d/",$str,$arr);var_dump($arr);

產生隨機數echo rand();echo "<br>";echo rand(0,10);echo "<br>";//擷取目前時間echo time();echo "<br>";//格式化顯示時間echo date("Y-m-d H:i:s","1506494423");echo "<br>";echo strtotime("2017-09-27 14:40:23");字串函數去字串長度$str1="as";$str2="abcdecdcd";//比較長度ASC代碼var_dump(strcmp($str2,$str1));//顯示長度echo strlen($str);
//拆分字串//split()--jsecho "<br>";var_dump(explode('b',$str2));//連結字元echo implode('|',["a","b","c"]);替換字串 尋找替換echo str_replace("cd","CD",$str2);指定位置替換echo substr_replace($str2,"xxx",0,3);截取字串echo substr($str2,1,3);

聯繫我們

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