gpt4 book ai didi

node.js - 用逗号分隔的数组的正则表达式nodejs

转载 作者:太空宇宙 更新时间:2023-11-03 22:04:03 25 4
gpt4 key购买 nike

我有用逗号分隔的代码列表,代码包含最少 3 个字符和最多 6 个字符(包括数字)。我为此编写了正则表达式。如何扩展我的正则表达式以使用 1 个或多个代码作为数组或列表?

这是我的代码正则表达式

const checkCodes = new RegExp('^[A-Z]+[A-Z0-9]{2,5}$');

上面的正则表达式适用于单个代码

codes - "BCD"

但不适用于我正在努力实现的以下行

codes - ["BCD", "VOC123",....1 or more codes]

最佳答案

const checkCodes = new RegExp('^[A-Z]+[A-Z0-9]{2,5}$');

let input = ["CODE1", "NOT.A.CODE", "CODE42"];

console.log(input.filter(str => checkCodes.test(str)))

关于node.js - 用逗号分隔的数组的正则表达式nodejs,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59357350/

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