在Android里怎样使用正則表達式:
以验证username为例。username一般字母开头,同意字母数字下划线。5-16个字节:
String regEx = "^[a-zA-Z][a-zA-Z0-9_]{4,15}$"; Pattern pattern = Pattern.compile(regEx); Matcher matcher = pattern.matcher(userName); boolean b = matcher.matches();
匹配的话b为true。否则为false。
时间: 2024-10-07 14:02:54