工具類 校驗

2021-07-31 00:23:03 字數 1027 閱讀 2632

/*

* 手機效驗

* 正確 true

* 錯誤 false

*/public boolean ismobile(string mobiles) $");

matcher m = p.matcher(mobiles);

return m.matches();}/*

* 手機格式校驗(11位)

* 正確 true

* 錯誤 false

*/public boolean isphone(string mobiles) ");

matcher m = p.matcher(mobiles);

return m.matches();}/*

* 純數字效驗

* 純數字 true

* 非純數字 false

*/ public boolean isnumber(string str)

/** 數字字母效驗

* 通過 true

* 不通過 false

*/public boolean isnumberletter(string str) $", str)) else }/*

* 只能輸入漢字,長度不限

* 通過 true

* 不通過 false

*/public boolean ischinese(string str) else }/*

* 密碼英文數字

* 通過 true

* 不通過 false

*/public boolean ispassword(string str) else }

/** * 身份證編碼校驗

* @param idcard 校驗身份證物件

* @return 不合法:true 合法:false

*/public boolean isidcardcheck(string idcard) |\\d",idcard))

return false;

}

scala 校驗工具類

校驗工具類 object validutils val startparamfieldvalue startparamfieldstr.toint val endparamfieldvalue endparamfieldstr.toint val datafieldstr stringutils.g...

後端引數校驗工具類

1 controller層判斷傳入引數是否符合規則,不符合規則直接返回錯誤狀態碼。2 其他需要校驗引數的地方。public class checkutil 判斷傳入的引數是否都符合規則 中文,字母,數字 30位 param params return true 符合 false 驗證不通過 publ...

身份證正確校驗工具類

具體就不去講為什麼,直接上 public class idcardutil 6位地區碼 18 19 23 d d 年yyyy 0 1 9 10 11 12 月mm 0 2 1 9 10 20 30 31 日dd d 3位順序碼 0 9xx 校驗碼 private static mapresults ...