Js中使用正则表达式验证输入是否有特殊字符

编程学习 2021-07-04 16:46www.dzhlxh.cn编程入门
这篇文章主要介绍了Js中使用正则表达式验证输入是否有特殊字符的简单代码,并通过一小段代码给大家介绍了js正则表达式验证同一字符串不同,需要的朋友可以参考下

Js中使用正则表达式验证输入是否有特殊字符的代码如下所示:

 //验证是否有特殊字符
function checkval(t) {
   var re = /^[\u4e00-\u9fa5a-z]+$/gi;//只能输入汉字和英文字母
  if (re.test(t)) {
     return true;
   } else {
     return false;
   }
 }

 js正则表达式,验证同一字符串不同

 var num = 888;
 var reg = /^[1-9]{1}[0-9]*$/g;
 console.log(reg.lastIndex);//0
 console.log(reg.test(num));//true
 console.log(reg.lastIndex);//3
 console.log(reg.test(num));//false
 console.log(reg.lastIndex);//0
 console.log(reg.test(num));//true
 console.log(reg.lastIndex);//3
 reg.lastIndex = 0;
 console.log(reg.lastIndex);//0
 console.log(reg.test(num));//true

总结

以上所述是长沙网络推广给大家介绍的Js中使用正则表达式验证输入是否有特殊字符,希望对大家有所帮助,如果大家有任何疑问请给我留言,长沙网络推广会及时回复大家的。在此也非常感谢大家对狼蚁SEO网站的支持!

Copyright © 2016-2025 www.dzhlxh.cn 金源码 版权所有 Power by

网站模板下载|网络推广|微博营销|seo优化|视频营销|网络营销|微信营销|网站建设|织梦模板|小程序模板