整数位5位 +小数位4位
- public static boolean judgeTwoDecimalFour(Object obj) {
- boolean flag = false;
- try {
- if (obj != null) {
- String source = obj.toString();
- // 判断是否是整数或者是携带一位或者两位的小数
- Pattern pattern = Pattern.compile("^[+]?([0-9]{1,5}+(.[0-9]{1,4})?)$");
- if (pattern.matcher(source).matches()) {
- flag = true;
- }
- }
- } catch (Exception e) {
- e.getMessage();
- }
- return flag;
- }