gpt4 book ai didi

javascript - 正好有 2 个大写字母和 3 个数字的正则表达式

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:01:21 26 4
gpt4 key购买 nike

我需要匹配包含恰好 2 个大写字母和 3 个数字的单词。数字和大写字母可以在单词中的任何位置。

HelLo1aa2s3d: true

WindowA1k2j3: true

AAAsjs21js1: false

ASaaak12: false

我的正则表达式尝试,但只匹配 2 个大写字母:

([a-z]*[A-Z]{1}[a-z]*){2}

最佳答案

您可以使用正则表达式 lookaheads :

/^(?=(?:.*[A-Z].*){2})(?!(?:.*[A-Z].*){3,})(?=(?:.*\d.*){3})(?!(?:.*\d.*){4,}).*$/gm

解释:

^                     // assert position at beginning of line
(?=(?:.*[A-Z].*){2}) // positive lookahead to match exactly 2 uppercase letters
(?!(?:.*[A-Z].*){3,}) // negative lookahead to not match if 3 or more uppercase letters
(?=(?:.*\d.*){3}) // positive lookahead to match exactly 3 digits
(?!(?:.*\d.*){4,}) // negative lookahead to not match if 4 or more digits
.* // select all of non-newline characters if match
$ // end of line
/gm // flags: "g" - global; "m" - multiline

Regex101

关于javascript - 正好有 2 个大写字母和 3 个数字的正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37237440/

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