gpt4 book ai didi

php - 从 excel 字符串中按空格展开

转载 作者:行者123 更新时间:2023-12-02 07:18:06 24 4
gpt4 key购买 nike

我尝试从 excel 的字符串中按空格爆炸

<?php

$string = 'RT 2';

print_r(explode(' ', $string));

// I try
$parts = preg_split('/\s+/', $string);
// and this
preg_match("/([а-яА-Яa-zA-Z]*)([0-9]*)/iu", $string, $parts);

但它不起作用。这不是废话。这是另一回事。

示例 - https://ideone.com/S7SEEE

如果 bin2hex()

$string = 'RT 2';
var_dump(bin2hex($string));
// string(10) "5254c2a032"

最佳答案

我认为最简单的解决方案是:

<?php

$string = 'RT 2';

print_r(preg_split('/\s+/u', $string));

您不需要指定表示空格的具体 unicode 字符。 /u 标志将整个空间范围添加到 \s 字符类。

关于php - 从 excel 字符串中按空格展开,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55354975/

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