Android里使用正則表達式
Posted cxchanpin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android里使用正則表達式相关的知识,希望对你有一定的参考价值。
在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。
以上是关于Android里使用正則表達式的主要内容,如果未能解决你的问题,请参考以下文章