使用 Java 检查字符串是否包含数字。
要查找给定字符串是否包含数字,请将其转换为字符数组,然后使用 字符类的isDigit() 方法,查找数组中的每个字符是否为数字。
示例
public class ContainsExample { public static void main(String args[]){ String sample = "krishna64"; char[] chars = sample.toCharArray(); StringBuilder sb = new StringBuilder(); for(char c : chars){ if(Character.isDigit(c)){ sb.append(c); } } System.out.println(sb); } }
输出
64
広告