84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
php用正则表达式匹配中文
1.用.+ 可以匹配到一个以上的中文吗? 2.用这样的 '/你好,哈哈/' 去匹配中文会不会出现问题?
因为不太了解正则,就想问问正则匹配中文时会不会出现编码的问题?
光阴似箭催人老,日月如移越少年。
可以匹配
用/你好,哈哈/这样的,只能匹配到/你好,哈哈/这个....因为前后两个斜杠会被当成普通内容来处理..
中文编码问题也是有的,就好像我在Python里,普通str类型内容,用unicode字符来匹配中文,就匹配不到,内容缓存unicode编码就好了
可以匹配
用/你好,哈哈/这样的,只能匹配到/你好,哈哈/这个....因为前后两个斜杠会被当成普通内容来处理..
中文编码问题也是有的,就好像我在Python里,普通str类型内容,用unicode字符来匹配中文,就匹配不到,内容缓存unicode编码就好了