dart經常使用正則表達式

電話號碼:1開頭,後面10位數字數組

static bool isPhone(String input) {
    RegExp mobile = new RegExp(r"1[0-9]\d{9}$");
    return mobile.hasMatch(input);
  }
複製代碼

登陸密碼:6~16位數字和字符組合bash

static bool isLoginPassword(String input) {
    RegExp mobile = new RegExp(r"(?![0-9]+$)(?![a-zA-Z]+$)[0-9A-Za-z]{6,16}$");
    return mobile.hasMatch(input);
  }
複製代碼

登陸密碼:6位數字驗證碼post

static bool isValidateCaptcha(String input) {
    RegExp mobile = new RegExp(r"\d{6}$");
    return mobile.hasMatch(input);
  }
複製代碼

帶校驗的身份證ui

static bool isCardId(String cardId) {
    if (cardId.length != 18) {
      return false; // 位數不夠
    }
    // 身份證號碼正則
    RegExp postalCode = new RegExp(
        r'^[1-9]\d{5}[1-9]\d{3}((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1])\d{3}([0-9]|[Xx])$');
    // 經過驗證,說明格式正確,但仍需計算準確性
    if (!postalCode.hasMatch(cardId)) {
      return false;
    }
    //將前17位加權因子保存在數組裏
    final List idCardList = ["7", "9", "10", "5", "8", "4", "2", "1", "6", "3", "7", "9", "10", "5", "8", "4", "2"];
    //這是除以11後,可能產生的11位餘數、驗證碼,也保存成數組
    final List idCardYArray = ['1', '0', '10', '9', '8', '7', '6', '5', '4', '3', '2'];
    // 前17位各自乖以加權因子後的總和
    int idCardWiSum = 0;

    for (int i = 0; i < 17; i++) {
      int subStrIndex = int.parse(cardId.substring(i, i + 1));
      int idCardWiIndex = int.parse(idCardList[i]);
      idCardWiSum += subStrIndex * idCardWiIndex;
    }
    // 計算出校驗碼所在數組的位置
    int idCardMod = idCardWiSum % 11;
    // 獲得最後一位號碼
    String idCardLast = cardId.substring(17, 18);
    //若是等於2,則說明校驗碼是10,身份證號碼最後一位應該是X
    if (idCardMod == 2) {
      if (idCardLast != 'x' && idCardLast != 'X') {
        return false;
      }
    } else {
      //用計算出的驗證碼與最後一位身份證號碼匹配,若是一致,說明經過,不然是無效的身份證號碼
      if (idCardLast != idCardYArray[idCardMod]) {
        return false;
      }
    }
    return true;
  }
複製代碼
相關文章
相關標籤/搜索