flutter 记录正则匹配

手机号正则匹配:

// 正则匹配
  static bool isChinaPhoneLegal(String str) {
    return new RegExp('^((13[0-9])|(15[^4])|(166)|(17[0-8])|(18[0-9])|(19[8-9])|(147,145))\\d{8}\$').hasMatch(str);
  }

 

posted @ 2019-08-22 19:06  走路蹩脚的火星人  阅读(2777)  评论(0编辑  收藏  举报