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里使用正則表達式的主要内容,如果未能解决你的问题,请参考以下文章

iOS正則表達式

vim中使用正則表達式

Python——正則表達式

3.2.3 正則表達式对象

3.2 re--正則表達式操作(Regular expression operations)

网页抓取信息(php正則表達式php操作excel)