在 PHP 中通过多个分隔符分割字符串
使用字符串时,可能存在需要将它们分成单独元素的情况基于特定字符或分隔符。在 PHP 中,您可以使用 preg_split() 函数将字符串分割为多个分隔符。
问题描述
考虑以下字符串:
"something here ; and there, oh,that's all!"
用“;”分割该字符串和“,”分隔符,你会希望获得以下结果:
something here and there oh that's all!
解决方案
要获得所需的结果,我们可以使用 preg_split()函数,它将正则表达式模式作为其第一个参数,将要拆分的字符串作为其第二个参数。在这种情况下,我们需要一个与“;”匹配的正则表达式模式。和“,”字符:
<code class="php">$pattern = '/[;,]/';</code>
然后我们使用此模式通过以下代码来分割字符串:
$string = "something here ; and there, oh,that's all!";
echo '<pre class="brush:php;toolbar:false">', print_r( preg_split( $pattern, $string ), 1 ), '</pre>';
此代码的输出将是所需的分割字符串:
something here and there oh that's all!
以上是如何在 PHP 中用多个分隔符分割字符串?的详细内容。更多信息请关注PHP中文网其他相关文章!