chenjiahe
2024-05-09 c42df923db54cbbe8f37dde415c1d0b7450614a0
src/main/java/com/hx/util/RegValidatorUtil.java
@@ -88,15 +88,15 @@
      return match(regex, str);
   }
   /**
   * 验证输入手机号码
   *
   * @param str 待验证的字符�?
   * @return 如果是符合格式的字符�?,返回 <b>true </b>,否则�? <b>false </b>
   */
   public static boolean IsHandset(String str) {
      String regex = "^[1]+[3,5]+\\d{9}$";
      return match(regex, str);
   /**校验手机号码
    * @param phoneNumber 手机号
    * @return 校验结果
    */
   public static boolean IsHandset(String phoneNumber) {
      if ((phoneNumber != null) && (!phoneNumber.isEmpty())) {
         return Pattern.matches("^1[3-9]\\d{9}$", phoneNumber);
      }
      return false;
   }
   /**
@@ -240,6 +240,20 @@
   }
   /**
    * 判断字符串是不是double型
    * @param str
    * @return
    */
   public static boolean isNumeric(String str){
      Pattern pattern = Pattern.compile("[0-9]+[.]{0,1}[0-9]*[dD]{0,1}");
      Matcher isNum = pattern.matcher(str);
      if( !isNum.matches() ){
         return false;
      }
      return true;
   }
   /**
   * @param regex
   * 正则表达式字符串
   * @param str