用正则表达式,示例代码如下:
String str = "123abc";
Pattern.compile("(?i)[a-z]]").matcher(str).find();
返回值为 Boolean 类型,含字母则为 true,否则为 false.
用正则表达式,示例代码如下:
String str = "123abc";
Pattern.compile("(?i)[a-z]]").matcher(str).find();
返回值为 Boolean 类型,含字母则为 true,否则为 false.