在php中,分割字符串很简单,主要是用到函数preg_match_all。
当处理含有中文的字符串时,可以用如下的方法:
<?php $str = "hi钓鱼岛是中国的"; preg_match_all("/./u", $str, $arr); print_r($arr[0]); //by www.jb200.com ?>
输出结果:
Array
(
[0] => h
[1] => i
[2] => 钓
[3] => 鱼
[4] => 岛
[5] => 是
[6] => 中
[7] => 国
[8] => 的
)
说明:模式修饰符u在php5中已完全支持。
例2,PHP分割中文字符串
将字符串“爱莲说”分割为“爱”,“莲”,“说”单个字。
使用到php函数preg_match_all。
示例:
<?php $str = "爱莲说"; preg_match_all('/[x{4e00}-x{9fa5}]/u',$str,$string); dump($string); //by www.jb200.com ?>
输出结果:
array
0=>
array
0 =>string '爱'(length=3)
1 =>string'莲'(length=3)
2 =>string '说'(length=3)
这时,获取具体的某个字,即可通过数组获取。
有关使用php分割中英文字符串的方法,可以参考文章:php分割中英文字符串的几种方法 。
您可能感兴趣的文章:
php空格分割文本为数组的例子
php分割中英文字符串的几种方法
php split()字符串分割函数应用举例
php分割GBK中文乱码的解决方法
php字符串分割函数explode的例子