摘要: // 获取字符串数字 private static void stringNumber() { String a = "20kg/桶"; String dest = "0"; if (a != null) { dest = a.replaceAll("[^0-9]", ""); } System.o 阅读全文
posted @ 2022-08-31 10:58 松松敲代码 阅读(217) 评论(0) 推荐(0) 编辑