gpt4 book ai didi

java - 检查字符串是否没有字母

转载 作者:行者123 更新时间:2023-12-02 01:10:51 25 4
gpt4 key购买 nike

我正在尝试查找字符串是否仅包含数字和特殊字符。

我尝试了下面的代码,但它不起作用

String text="123$%$443";
String regex = "[0-9]+";
String splChrs = "-/@#$%^&_+=()" ;
if ((text.matches(regex)) && (text.matches("[" + splChrs + "]+"))) {
System.out.println("no alphabets");
}

最佳答案

只需使用 ^ 字母排除:

[^a-zA-Z]+

参见demo

关于java - 检查字符串是否没有字母,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56422348/

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