摘要: //数值判断正则表达式 public boolean isNumeric(char[] str) { return String.valueOf(str).matches("[\\+-]?[0-9]*(\\.[0-9]*)?([eE][\\+-]?[0-9]+)?"); } //java包中正则表达 阅读全文
posted @ 2016-07-19 09:00 马云12314 阅读(120) 评论(0) 推荐(0) 编辑