gpt4 book ai didi

javascript - 允许单词字符、括号、空格和连字符的正则表达式

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

我正在尝试在 javascript 中使用正则表达式验证字符串。字符串可以有:

  • 单词字符
  • 括号
  • 空间
  • 连字符 (-)
  • 3 到 50 长度

这是我的尝试:

function validate(value, regex) {
return value.toString().match(regex);
}

validate(someString, '^[\w\s/-/(/)]{3,50}$');

最佳答案

像这样写你的验证器

function validate(value, re) {
return re.test(value.toString());
}

并使用这个正则表达式

/^[\w() -]{3,50}$/

一些测试

// spaces
validate("hello world yay spaces", /^[\w() -]{3,50}$/);
true

// too short
validate("ab", /^[\w() -]{3,50}$/);
false

// too long
validate("this is just too long we need it to be shorter than this, ok?", /^[\w() -]{3,50}$/);
false

// invalid characters
validate("you're not allowed to use crazy $ymbols", /^[\w() -]{3,50}$/);
false

// parentheses are ok
validate("(but you can use parentheses)", /^[\w() -]{3,50}$/);
true

// and hyphens too
validate("- and hyphens too", /^[\w() -]{3,50}$/);
true

关于javascript - 允许单词字符、括号、空格和连字符的正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15883097/

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