爆炸空行

发布于 2024-12-04 01:04:18 字数 418 浏览 0 评论 0原文

我正在尝试爆炸空行。

这是我的字符串变量:

$string = '
Hello,

Just test lines
Second test lines
';

我想要这些结果:

$OUTPUT[0]='HELLO,';
$OUTPUT[1]='Just test lines
Second test lines';

我的代码:

$a = explode("\n\n",$string);
print_r($a);

我的字段结果:

Array ( [0] => Hello, Just test lines Second test lines ) 

I am trying to explode empty line.

Here is my string variable:

$string = '
Hello,

Just test lines
Second test lines
';

I want these results:

$OUTPUT[0]='HELLO,';
$OUTPUT[1]='Just test lines
Second test lines';

My code:

$a = explode("\n\n",$string);
print_r($a);

My field results:

Array ( [0] => Hello, Just test lines Second test lines ) 

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

纸伞微斜 2024-12-11 01:04:18

这应该可以解决问题:

$string = '
Hello,

Just test lines
Second test lines
';

$data  = preg_split("#\n\s*\n#Uis", $string);
print_r($data);

This should do the trick:

$string = '
Hello,

Just test lines
Second test lines
';

$data  = preg_split("#\n\s*\n#Uis", $string);
print_r($data);
作死小能手 2024-12-11 01:04:18

在字符串周围进行修剪,然后用逗号将其分解,然后将逗号添加回第一个元素。

$arraything = explode(',', trim($string));
$arraything[0] = $arraything[0].",";

throw a trim around your string, then explode it with the comma, then add the comma back on to the first element.

$arraything = explode(',', trim($string));
$arraything[0] = $arraything[0].",";
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文