目前im检测特殊字符使用下面的代码
val specialChars: Pattern = Pattern.compile("[^a-z\\d ]", Pattern.CASE_INSENSITIVE)
val specialCharMatcher: Matcher = specialChars.matcher(text)
val hasSpecialChar = specialCharMatcher.find()
字符串
是否有方法从检测中排除引号" "
、单引号'
和斜杠/
?
1条答案
按热度按时间xoshrz7s1#
您可以通过将特定字符添加到正则表达式来从检测中排除它们,如下所示:
字符串