gpt4 book ai didi

php - 正则表达式 PHP 拆分数字和字符串

转载 作者:搜寻专家 更新时间:2023-10-31 21:10:59 24 4
gpt4 key购买 nike

我想拆分一个包含一些数字和字母的字符串。像这样:

ABCd Abhe123
123ABCd Abhe
ABCd Abhe 123
123 ABCd Abhe

我试过这个:

<?php preg_split('#(?<=\d)(?=[a-z])#i', "ABCd Abhe 123"); ?>

但它不起作用。数组中只有一个单元格带有“ABCd Abhe 123”
例如,我想在单元格 0 中:数字和单元格 1:字符串:

[0] => "123",
[1] => "ABCd Abhe"

感谢您的帮助! ;)

最佳答案

改用preg_match_all

preg_match_all("/(\d+)*\s?([A-Za-z]+)*/", "ABCd Abhe 123" $match);

对于每场比赛:

  • $match[i][0] 包含匹配的片段
  • $match[i][1] 包含数字
  • $match[i][2] 包含字母

(请参阅 here 进行正则表达式测试)

然后把它们放在一个数组中

for($i = 0; $i < count($match); $i++)
{
if($match[i][1] != "")
$numbers[] = $match[1];

if($match[i][2] != "")
$letters[] = $match[2];
}

编辑1

我已经更新了 the regex .它现在查找数字或字母,有或没有空格。


编辑2

正则表达式是正确的,但数组处理不是。使用preg_match_all,那么$match就是一个包含数组的数组,比如:

Array
(
[0] => Array
(
[0] => Abc
[1] => aaa
[2] => 25
)

[1] => Array
(
[0] =>
[1] =>
[2] => 25
)

[2] => Array
(
[0] => Abc
[1] => aaa
[2] =>
)

)

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

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