gpt4 book ai didi

javascript - 用于匹配用户名的正则表达式 : min 3 chars, 最多 20 个字符,字符之间可选下划线

转载 作者:数据小太阳 更新时间:2023-10-29 04:31:42 28 4
gpt4 key购买 nike

我正在尝试匹配 roblox 用户名(遵循这些准则):

  • 最少 3 个字符

  • 最多 20 个字符

  • 最多 1 个下划线

  • 下划线不能在用户名的开头或结尾

我在 node.js 版本 10.12.0 上运行。

我当前的 RegExp 是:/^([a-z0-9])(\w)+([a-z0-9])$/i,但这不考虑 1 个下划线的限制。

List of some unit tests on regex101.com

最佳答案

你可以使用

^(?=^[^_]+_?[^_]+$)\w{3,20}$

参见 a demo on regex101.com (有用于演示目的的换行符)


分解为

^         # start of the string
(?=
^ # start of the string
[^_]+ # not an underscore, at least once
_? # an underscore
[^_]+ # not an underscore, at least once
$ # end of the string
)
\w{3,20} # 3-20 alphanumerical characters
$ # end


这个问题受到了相当多的关注,所以我觉得也添加一个非正则表达式的版本:

let usernames = ['gt_c', 'gt', 'g_t_c', 'gtc_', 'OnlyTwentyCharacters', 'poppy_harlow'];

let alphanumeric = new Set(['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '_']);

function isValidUsername(user) {
/* non-regex version */
// length
if (user.length < 3 || user.length > 20)
return false;

// not allowed to start/end with underscore
if (user.startsWith('_') || user.endsWith('_'))
return false;

// max one underscore
var underscores = 0;
for (var c of user) {
if (c == '_') underscores++;
if (!alphanumeric.has(c))
return false;
}

if (underscores > 1)
return false;

// if none of these returned false, it's probably ok
return true;
}

function isValidUsernameRegex(user) {
/* regex version */
if (user.match(/^(?=^[^_]+_?[^_]+$)\w{3,20}$/))
return true;
return false;
}

usernames.forEach(function(username) {
console.log(username + " = " + isValidUsername(username));
});

我个人认为正则表达式版本更短更清晰,但这取决于您的决定。特别是字母数字部分需要一些比较或正则表达式。考虑到后者,您可以完全使用正则表达式版本。

关于javascript - 用于匹配用户名的正则表达式 : min 3 chars, 最多 20 个字符,字符之间可选下划线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54391861/

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