gpt4 book ai didi

php - 正则表达式在第一个换行符处拆分字符串

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:53:14 25 4
gpt4 key购买 nike

我想在第一个换行符处拆分一个字符串,而不是第一个空行

'/^(.*?)\r?\n\r?\n(.*)/s'(第一个空行)

例如,如果我有:

$str = '2099 test\nAre you sure you want to continue\n some other string here...';

match[1] = '2099 test'
match[2] = 'Are you sure you want to continue\n some other string here...'

最佳答案

preg_split() 有一个限制参数,您可以利用它。你可以简单地做:

$lines = preg_split('/\r\n|\r|\n/', $str, 2);

关于php - 正则表达式在第一个换行符处拆分字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5313036/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com