java去除字符串时间的横杠、空格、冒号

String Times = " 2018-10-19 14:16:17";

String str = Times.replaceAll("[[\\s-:punct:]]","");

你可能感兴趣的:(java)