Java 正则表达式格式化时间显示
/* * test.java * Version 1.0.0 * Created on 2017年12月16日 * Copyright ReYo.Cn */ package reyo.sdk.utils.test.date; /** * <B>创 建 人:</B>AdministratorReyoAut <BR> * <B>创建时间:</B>2017年12月16日 上午9:52:52<BR> * * @author ReYo * @version 1.0 */ public class test { /** * 将字符串“2017-12-179 09:35:36” 转换成“201712179093536” * @param args */ public static void main(String[] args) { String str = "2017-12-179 09:35:36"; String str2 = ""; String[] result = str.split("\\D"); for (int i = 0; i < result.length; i++) { System.out.println(result[i]); str2 += result[i]; } System.out.println(str2); } }