js判断字符串中是否包含特殊字符、中文

时间:2020-06-20 13:04:00   收藏:0   阅读:331

 

 

 /**
     * @author:xc
     * @desc: 特殊字符校验 除了下划线
     */
    containSpecial(str) {
      var containSpecial = RegExp(
        /[(\ )(\~)(\!)(\@)(\#)(\$)(\%)(\^)(\&)(\*)(\()(\))(\-)(\+)(\=)(\[)(\])(\{)(\})(\|)(\\)(\;)(\:)(\‘)(\")(\,)(\.)(\/)(\<)(\>)(\?)(\)]+/
      );
      return containSpecial.test(str);
    },

    /**
     * @author:xc
     * @desc: 特殊字符校验 除了下划线 斜杠 反斜杠 冒号
     */
    addressContainSpecial(str) {
      var containSpecial = RegExp(
        /[(\ )(\~)(\!)(\@)(\#)(\$)(\%)(\^)(\&)(\*)(\()(\))(\-)(\+)(\=)(\[)(\])(\{)(\})(\|)(\;)(\‘)(\")(\,)(\.)(\<)(\>)(\?)(\)]+/
      );
      return containSpecial.test(str);
    },

    /**
     * @author:xc
     * @desc: 中文校验
     */
    checkChinese(val) {
      var reg = new RegExp("[\\u4E00-\\u9FFF]+", "g");
      return reg.test(val);
    },

 

原文:https://www.cnblogs.com/xuchao0506/p/13168214.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!