public class test { public static boolean isNumeric(String str){ for (int i = str.length();--i>=0;){ if (!Character.isDigit(str.charAt(i))){ return false; } } return true; } public static void main(String[] args) {
public static void main(String[] args) { String[] a = {"倚楼听","风雨","32","18","淡看","江湖路"}; int j = a.length; double[] doubArr = new double[j]; for (int i=0; i<j; i++){ try { doubArr[i] = Double.parseDouble(a[i]); } catch (NumberFormatException e) { // e.printStackTrace(); doubArr[i] = 0; } } for (double d:doubArr){ System.out.println(d); } } 转换之后的结果存放在doubArr中,后面那个for循环是为了验证结果用的。
猫吻
2025-03-30 07:30:54
用正则 public static void main(String[] args) { String[] a={"倚楼听","风雨","32","18","淡看","江湖路"}; for (int i = 0; i < a.length; i++) { if (a[i].matches("^[\\u4e00-\\u9fa5]*$")){ a[i] = "0"; } else if (a[i].matches("^\\d*$")) { a[i] = Double.parseDouble(a[i])+""; } }//end of for System.out.print(Arrays.toString(a)); }//end of main