gpt4 book ai didi

Java 扫描仪,包含数字

转载 作者:行者123 更新时间:2023-11-30 04:09:29 29 4
gpt4 key购买 nike

String[] invalidChars = {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"};
Scanner sc = new Scanner(System.in);
try {
String country = sc.next();
String state = sc.next();
String city = sc.next();

if(country.contains(invalidChars) || state.contains(invalidChars) || city.contains(invalidChars)) {

}
}
catch(Exception e){}

我如何告诉 if 语句检查字符串是否包含任何数字?我尝试了数组购买,但收到错误消息“String[] 无法转换为 CharSequence”?请问有什么想法吗?

最佳答案

您想使用正则表达式。

yourString.matches(".*\\d.*");  // returns true if the string contains a number

关于Java 扫描仪,包含数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20010383/

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