如何使用正则表达式在String中查找空格?

时间:2015-01-01 11:30:07

标签: java android string

我的注册表单中有一个EditText for password字段。如果用户在密码字段中输入空格,我想显示错误。那么请给RegEx或任何其他解决方案找到字符串中的任何空格? 感谢

1 个答案:

答案 0 :(得分:1)

您可以使用

variable.contains(" ")

或者使用正则表达式

Pattern pattern = Pattern.compile("\\s");
Matcher matcher = pattern.matcher(s);
boolean found = matcher.find();