为什么用多字节标点符号分割时会出现额外的空行?

发布于 2024-08-05 05:20:44 字数 343 浏览 5 评论 0原文

试试这个:

$pattern = '/[\x{ff0c},]/u';

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


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

输出:

<pre>Array
(
    [0] => hei,nihao,a
)
</pre>

Try this:

$pattern = '/[\x{ff0c},]/u';

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


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

output:

<pre>Array
(
    [0] => hei,nihao,a
)
</pre>

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

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

发布评论

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

评论(1

装纯掩盖桑 2024-08-12 05:20:44

您拥有的字符是全角逗号(十六进制 ff0c )以及常规逗号。您是否尝试过将其更新到我的版本?

<?php
$pattern = '/[\x{ff0c},]/u';

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


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

输出:

Array
(
    [0] => hei
    [1] => nihao
    [2] => a 
)

The character you have is a fullwidth comma ( hex ff0c ), as well as a regular comma. Have you tried updating it to my version which accounts for it?

<?php
$pattern = '/[\x{ff0c},]/u';

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


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

Output:

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