要求如下: 1.非负整数输入,如0、100等原文链接:https://www.f2er.com/regex/359055.html2.两位小数的非负浮点数输入
Pattern p = Pattern.compile("^(([1-9]\\d{0,9})|0)(\\.\\d{1,2})?$"); Matcher m = p.matcher(text); if (m.matches()) { // TODO return; }
要求如下: 1.非负整数输入,如0、100等原文链接:https://www.f2er.com/regex/359055.html2.两位小数的非负浮点数输入
Pattern p = Pattern.compile("^(([1-9]\\d{0,9})|0)(\\.\\d{1,2})?$"); Matcher m = p.matcher(text); if (m.matches()) { // TODO return; }