gpt4 book ai didi

javascript - 使用正则表达式在至少一个数字后允许逗号

转载 作者:行者123 更新时间:2023-12-03 04:14:27 30 4
gpt4 key购买 nike

我需要一个正则表达式,允许在数字后使用逗号。我已经尝试过,但在编号之后允许逗号 122,,,

我想要:

12,323,232,2,232
1,1,1,1,1
123123,23231,2322

我不想要:

12312,,,123,,2,32,
12312,123,12,,,,,123,12

我的代码是

$(".experience").keyup(function (e) { 
this.value = this.value.replace(/[^0-9\{0,9}]/g,'');
});

最佳答案

这是您要找的吗?我不习惯使用正则表达式,但设法快速将其组合在一起:

^([0-9]+\,?)*$

The questionmark is makes the comma optional.
[0-9] = numeric values only
+ = quantifier between 1 and unlimited
\ = escapes the character, so it's a constant
* = quantifier between 0 and unlimited times

希望这有帮助!

问候

关于javascript - 使用正则表达式在至少一个数字后允许逗号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44201739/

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