Maison > développement back-end > tutoriel php > php分割中文字符串为数组的简单例子

php分割中文字符串为数组的简单例子

WBOY
Libérer: 2016-07-25 08:58:11
original
1402 Les gens l'ont consulté
本文介绍下,用php快速切分中文字符串为数组的一个例子,供大家学习参考。

在php中,分割字符串很简单,主要是用到函数preg_match_all。 当处理含有中文的字符串时,可以用如下的方法:

<?php
    $str = "hi123是中国的";
    preg_match_all("/./u", $str, $arr);
    print_r($arr[0]);
    //by bbs.it-home.org
?>
Copier après la connexion

输出结果: 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 bbs.it-home.org
?>
Copier après la connexion

输出结果: array 0=> array 0 =>string '爱'(length=3) 1 =>string'莲'(length=3) 2 =>string '说'(length=3) 这时,获取具体的某个字,即可通过数组获取。

有关使用php分割中英文字符串的方法,可以参考文章:php分割中英文字符串的几种方法



source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal