我正在验证一个城市字段,我想接受单词之间的空格,例如“旧金山”。现在我只能验证一个单词的城市。
我怎样才能改进我的代码?
public static boolean verifyCity (Context context, String _string) {
Pattern pattern_ = Pattern.compile("[a-zA-Z]+[\\s]+");
Matcher matcher = pattern_.matcher(_string);
boolean matchFound = matcher.matches();
if (matchFound) return true;
else return false;
}