gpt4 book ai didi

javascript - 用于检查字符串是否包含混合字符的正则表达式 : 0-n digits and 0-m letters

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

我试图找到允许我传递具有 0-n 数字和 0-m 小写字母的字符串的正则表达式,其中字母和数字可以混合。不允许使用任何其他字符。据我所知,我不知道“混合”是如何工作的

// example n and m values and array with input strings to test
let n=2,m=3;
let s=["32abc","abc32","a3b2c","3abc2","a2","abcd23","a2b3c4","aa","32","a3b_2c"];

let r=s.map(x=>/[0-9]{2}[a-z]{3}/.test(x));

console.log("curr:", JSON.stringify(r));
console.log("shoud be: [true,true,true,true,true,false,false,true,true,false]");

最佳答案

考虑使用全局标志分别测试字母和数字,而不是单个 RE,并检查全局匹配数组的长度是否为 nm分别是:

let n = 2,
m = 3; // example n and m values
let s = ["32abc", "abc32", "a3b2c", "3abc2", "a2", "abcd23", "a2b3c4", "aa", "32"];


let r = s.map(str => (
/^[0-9a-z]*$/.test(str) &&
(str.match(/[0-9]/g) || []).length <= n &&
(str.match(/[a-z]/g) || []).length <= m
));
console.log("current is:", JSON.stringify(r));
console.log("shoud be: [true,true,true,true,true,false,false,true,true]");

或者,更冗长但也许更优雅,无需创建空的中间数组:

let n = 2,
m = 3; // example n and m values
let s = ["32abc", "abc32", "a3b2c", "3abc2", "a2", "abcd23", "a2b3c4", "aa", "32"];


let r = s.map((str, i) => {
const numMatch = str.match(/[0-9]/g);
const numMatchInt = numMatch ? numMatch.length : 0;
const alphaMatch = str.match(/[a-z]/g);
const alphaMatchInt = alphaMatch ? alphaMatch.length : 0;
return numMatchInt <= n && alphaMatchInt <= m && /^[0-9a-z]*$/.test(str);
});
console.log("current is:", JSON.stringify(r));
console.log("shoud be: [true,true,true,true,true,false,false,true,true]");

关于javascript - 用于检查字符串是否包含混合字符的正则表达式 : 0-n digits and 0-m letters,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54626435/

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