1
你好不起作用怎麼辦正則表達式我要爲AZ AZ0_9آ-ی(波斯)正則表達式android系統
String regex ="^(?:([a-z A-Z 0-9])||([آ-ی]))+$";
我不想讓特殊字符,如!@#$%^ & *() ?> < + - 。
和我commllet代碼是:如果你想允許正則表達式的空間變化結束
public int check_first_last_name(String name){
String regex ="^(?:([a-zA-Z0-9])||([آ-ی]))+$";
Matcher matcher = Pattern.compile(regex).matcher(name);
if (!matcher.find()){
return 2;
}
return 1;
}
'^(?:([A-ZA-Z0-9])|([آ-ی]) )+ $',''||應該是'|'和清晰度添加您的有效病例和無效的病例,並說明究竟你想 –
我修改的內容和修復我的錯誤。看看它 –