Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

An example Analysis of php and javascript regular matching in Chinese

2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

The purpose of this article is to share with you the content of the sample analysis of php and javascript regular matching in Chinese. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.

Regular matching in php: (key point: [\ x {4e00} -\ x {9fa5}] +)

$str = ""; if (preg_match ("/ ^ [\ x {4e00} -\ x {9fa5}] + $/ u", $str,$arr)) {print ("the string is all in Chinese"); echo''; print_r ($arr);} else {print ("the string is not all in Chinese"); echo''; print_r ($arr);}

Regular matching of gbk and gb2312 in php:

Preg_match ("/ ^ [" .chr (0xa1). "-" .chr (0xff). "] + $/", $str)

Javascript regular matching Chinese:

Var str = "php programming"; if (/ ^ [\ u4e00 -\ u9fa5] + $/ .test (str)) {alert ("the string is all in Chinese");} else {alert ("the string is not all in Chinese");} Thank you for reading! This is the end of the article on "sample Analysis of php and javascript regular matching in Chinese". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, you can share it for more people to see!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report