1. 程式人生 > >Android裏使用正則表達式

Android裏使用正則表達式

() span and dsm matcher ng- 劃線 pos content

在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裏使用正則表達式