php中正則匹配中文漢字

來源:互聯網
上載者:User

 代碼如下 複製代碼

echo (mb_eregi("[x80-xff].","中d文") ? "有" : "無") ."漢字";
echo (mb_eregi("^([x80-xff].)+$","中文") ? "全是漢字" : ""); 看一判斷全中文字串函數

以下以PHP為例進行匹配:

 代碼如下 複製代碼

<?php
   $str = "學習php是一件快樂的事。";
   preg_match_all("/[x80-xff]+/", $str, $match);
   //UTF-8 使用:
   //preg_match_all("/[x{4e00}-x{9fa5}]+/u", $str, $match);
   print_r($match);
?>

輸出:

Array
(
    [0] => Array
        (
            [0] => 學習
            [1] => 是一件快樂的事。
        )

)

正則漢字

 代碼如下 複製代碼

$str = "請問php中的eregi如何匹配漢字";
if (preg_match("/^[".chr(0x80)."-".chr(0xff)."]+$/",$str)) {
   echo "這是一個純中文字串";
} else{
   echo "這不是一個純中文字串";
}
preg_match_all($pat,……)與preg_replace($pat,……)……


preg_match_all("/(漢字)+/ism","我是漢字,看你把我怎麼著!",$m_a);
了各個編碼的高位與低位的開始與結束,那麼自然就可以寫出正則,而且直接是十六位的,有啥困難?呵呵。不過要注意,在php裡面,表示十六位是用的x


我們還可以用該Regex來判斷是否是gb2312的漢字

 代碼如下 複製代碼

<?php
$str = "小小子";
if(preg_match("/^[xb0-xf7][xa0-xfe]+$/",$str)){
print($str."確實全是漢字");
} else {
print($str."這個真tc不全是漢字");
}
?>

相關文章

聯繫我們

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