gpt4 book ai didi

javascript - YA Javascript 正则表达式问题

转载 作者:行者123 更新时间:2023-11-28 21:26:10 25 4
gpt4 key购买 nike

尝试通过 JQuery 和验证插件进行一些 JavaScript 表单验证。

我正在执行自定义验证规则,输入值与此规则非常匹配...

A-z 0-9 - _ ' & .

基本上,我无法弄清楚 ' & 。部分。这就是我现在所拥有的...

/^[A-z0-9_]+(-)+$/i

...我不知道这是否理想,它适用于它所涵盖的内容。

但是,对上述字符进行正则表达式测试的最佳方法是什么?谢谢。

最佳答案

如果您想匹配任何上述匹配条件,任意次数,则以下代码应该有效:

/^[a-zA-Z0-9&_.\-']+$/

我在下面添加了一些测试示例,在注释中注明模式何时有效或无效:

<script type="text/javascript">
//A-z 0-9 - _ ' & .
//valid
var test_string = "This'Is'-Val1d&_.";
if (test_string.match(/^[a-zA-Z0-9&_.\-']+$/)){
alert("first test matched");
}else{
alert("first test did not match");
}

//invalid - whitespace not allowed
test_string = "This IsNot- Va'l1d & _ .";
if (test_string.match(/^[a-zA-Z0-9&_.\-']+$/)){
alert("second test matched");
}else{
alert("second test did not match");
}

//invalid - ! is not allowed
test_string = "'ThisIsNotValid!'";
if (test_string.match(/^[a-zA-Z0-9&_.\-']+$/)){
alert("third test matched");
}else{
alert("third test did not match");
}

</script>

关于javascript - YA Javascript 正则表达式问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4996056/

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