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

新手上路,请多包涵

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

我想把它分成 ;,

所以处理后应该得到:

 something here

and there

oh

that's all!

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

阅读 298
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 翻译
子站问答
访问
宣传栏