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(St
相關文章
相關標籤/搜索