Cet article présente principalement l'utilisation de la fonction preg_split en PHP pour diviser les chaînes contenant des nouvelles lignes et des points-virgules. Il a une certaine valeur de référence. Maintenant, je le partage avec vous. Les amis dans le besoin peuvent s'y référer
La fonction preg_ split() est utilisée pour diviser des chaînes avec des expressions régulières. C'est la même chose que <span class="hljs-keyword" style="color:rgb(167,29) ,93) ;">split</span>()
<span class="hljs-keyword" style="color:rgb(167,29,93);">split</span>()
et la principale différence entre les fonctions explode()
sont :
()<span class="hljs-keyword" style="color:rgb(167,29,93);">split</span>()
Fonction : utilisez des expressions régulières pour diviser la chaîne et renvoyer un tableau. Si une erreur se produit, renvoyez <span class="hljs- literal" style="color:rgb(0,134,179);">false</span>
. <span class="hljs-literal" style="color:rgb(0,134,179);">false</span>
preg_split()
Fonction : Utiliser une syntaxe d'expression régulière compatible Perl, généralement meilleure que <span class="hljs-keyword" style="color:rgb(167,29,93);">split</span>()
est plus rapide. <span class="hljs-keyword" style="color:rgb(167,29,93);">split</span>()
explode()
Fonction : Utilisez une chaîne pour diviser une autre chaîne, généralement plus rapide que les deux fonctions ci-dessus.
<span class="hljs-attribute" style="color:rgb(0,134,179);">preg_<p style="white-space:pre-wrap;color:rgb(63,63,63);font-family:'Segoe UI', SimSun, 'Microsoft YaHei', SimHei, Arial, sans-serif;font-size:14px;background-color:rgb(255,255,255);"> split()</p></span>
fonction La syntaxe est : <span class="hljs-attribute" style="color:rgb(0,134,179);">preg_</span> split()
array preg_split( string pattern, string subject [, int limit [, int flags]] )
参数 | 说明 |
---|---|
pattern | 正则表达式 |
subject | 需要匹配分割的对象 |
limit | 可选,如果指定了 <span class="hljs-built_in">limit</span> ,则最多返回 <span class="hljs-built_in">limit</span> 个子串,如果 <span class="hljs-built_in">limit</span> 是 <span class="hljs-deletion" style="color:rgb(189,44,0);background-color:rgb(255,236,236);">-1</span> ,则意味着没有限制,可以用来继续指定可选参数 flags |
flags | 设定 <span class="hljs-built_in">limit</span> 为 <span class="hljs-deletion" style="color:rgb(189,44,0);background-color:rgb(255,236,236);">-1</span> 后可选,可以是下列标记的任意组合(用按位或运算符 | 组合):
|
这样,我们就有了按换行符和分号分割字符串的方法了。
$result = preg_split('/[;\r\n]+/s', $value); // 返回数据保存在$result数组中
其中:
\r 表示:回车符(ACSII:13
或0x0d
),就是我们常说的硬回车。
\n 表示:换行(ACSII:10
或0x0a
),就是我们常说的软回车。
分号就不用说了吧:)
相关推荐:
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!