如何在 PHP 中用多个分隔符拆分字符串?

新手上路,请多包涵

"something here ; and there, oh,that's all!"

我想把它分成 ;,

所以处理后应该得到:

 something here

and there

oh

that's all!

原文由 omg 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 297
2 个回答
<?php

$pattern = '/[;,]/';

$string = "something here ; and there, oh,that's all!";

echo '<pre>', print_r( preg_split( $pattern, $string ), 1 ), '</pre>';

原文由 meder omuraliev 发布,翻译遵循 CC BY-SA 4.0 许可协议

$result_array = preg_split( "/[;,]/", $starting_string );

原文由 Devin Ceartas 发布,翻译遵循 CC BY-SA 3.0 许可协议

推荐问题
logo
Stack Overflow 翻译
子站问答
访问
宣传栏