我想寫一個正則表達式:正則表達式。只有一個點
Pattern pattern2 = Pattern.compile("^([a-zA-Z0-9_'.-]{2,15})$");
Matcher matcher2 = pattern2.matcher(username);
它應該做的是:
- all letters are allowed
- all digit are allowed
- symbols such as _'- are allowed
我想補充一點,只有一個點是允許的。
user.name ok
use.rna.me not ok
非常感謝您的幫助!
與{2,15}我的意思是用戶名必須是大於2小於15 – PaulStrom