js 정규 날짜 변경 및 날짜 포맷

더 읽 기
숫자 변환:
 
ar ttDate = "2013 12 20  14:20:20";
ttDate = ttDate.replace(/[^0-9]/mg, '').match(/.{8}/);
alert(ttDate);

20131220

 
 
 
날짜 변경:
 
var ttDate = "2013 12 20  14:20:20"; 
ttDate = ttDate.match(/\d{4}.\d{1,2}.\d{1,2}/mg).toString(); 
ttDate = ttDate.replace(/[^0-9]/mg, '-'); 
alert(ttDate);

2013-12-20

 
 
슈퍼 정규 교체:
var ttDate = "2013 12 20  14:20:20"; 
ttDate = ttDate.replace(/(\d{4}).(\d{1,2}).(\d{1,2}).+/mg, '$1-$2-$3');
alert(ttDate);

2013-12-20

좋은 웹페이지 즐겨찾기