利用正则表达式将字符串“2014-09-29 14:35:36” 转换成“20140929143536”

前端之家收集整理的这篇文章主要介绍了利用正则表达式将字符串“2014-09-29 14:35:36” 转换成“20140929143536”前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
package cn.usst.DataTest4;

public class DataTest4 {

	/**
	 * 将字符串“2014-09-29 14:35:36” 转换成“20140929143536”
	 * @param args
	 */
	public static void main(String[] args) {
		String str = "2014-09-29 14: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);
	}

}
原文链接:https://www.f2er.com/regex/361247.html

猜你在找的正则表达式相关文章