gpt4 book ai didi

JavaScript 正则表达式无法获得所有匹配项

转载 作者:行者123 更新时间:2023-11-30 08:03:58 24 4
gpt4 key购买 nike

代码很简单,但我想不出问题出在哪里:

var str = '789a54bc2';
var matches = str.match(/\d*/);

我希望在匹配 var (789, 54, 2) 中看到三个条目,但只有第一个条目 (789)。

我的错误在哪里?泰!

最佳答案

var str = '789a54bc2';
var matches = str.match(/\d+/g);

使用 +,否则您的 matches 数组中将得到空结果。

一个很好的引用可能位于 here并告诉您关于 JavaScript 中的 RegEx 可能想知道的一切。

关于JavaScript 正则表达式无法获得所有匹配项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21262586/

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