gpt4 book ai didi

javascript - 使前面的字符成为强制/必需

转载 作者:行者123 更新时间:2023-12-03 00:30:54 28 4
gpt4 key购买 nike

我需要匹配以下模式:N.N.N

324324.234324.234324 匹配,以及 1.1.1

I have the following pattern:

(\d*\.\d*\.\d*)

问题是,它匹配 N.N.已经在第二个点了,那么,我怎样才能使以下数字成为必填项呢?

最佳答案

使用 ^$ anchor ,并将 * 更改为 +,因为至少需要一个数字

此外,(\d*\.){2} 可用于简化 \d+\.\d+\.

[
'324324.234324.234324',
'324324.234324.'
].forEach(test =>
console.log(/^(\d+\.){2}\d+$/.test(test))
);

关于javascript - 使前面的字符成为强制/必需,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53874885/

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