去除字符串中的数字和小数点:

    1. String text = "4.1HAHAHA哈哈哈";
    2. System.out.println(text.replaceAll("[\\w.]", ""));

    List subList: