嘿所有,所以我试图允许一些文本输入在发送之前通过正则表达式检查。我希望文本只包含A-Z,0-9和空格“”字符。这是我现在的代码:
if(!title.matches("[a-zA-Z0-9_]+") {
//fail
}
else {
//success
}
但是,当我输入“This is a test”
之类的内容时,仍然会得到//fail
结果
有什么想法吗?谢谢大家。
答案 0 :(得分:23)
您没有在正则表达式中包含空格。请尝试以下方法:
if (!title.matches("[a-zA-Z0-9 ]+"))
答案 1 :(得分:3)
\s
允许任何ASCII空白字符。考虑使用它而不是“”。
if(!title.matches("[a-zA-Z0-9_\s]+")) {
//fail
}
else {
//success
}