gpt4 book ai didi

Java 正则表达式 : check if word has non alphanumeric characters

转载 作者:太空狗 更新时间:2023-10-29 22:33:13 24 4
gpt4 key购买 nike

这是我的代码,用于确定一个单词是否包含任何非字母数字字符:

  String term = "Hello-World";
boolean found = false;
Pattern p = Pattern.Compile("\\W*");
Matcher m = p.Matcher(term);
if(matcher.find())
found = true;

我想知道正则表达式是否有误。我知道 "\W" 会匹配任何非单词字符。知道我缺少什么吗??

最佳答案

将您的正则表达式更改为:

.*\\W+.*

关于Java 正则表达式 : check if word has non alphanumeric characters,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5506154/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com