我想获取给定字符串的数字,我使用了如下代码
String sample = "7011WD";
String output = "";
for (int index = 0; index < sample.length(); index++)
{
if (Character.isDigit(sample.charAt(index)))
{
char aChar = sample.charAt(index);
output = output + aChar;
}
}
System.out.println("output :" + output);
结果是: 输出:7011
有没有简单的方法来获得输出?