2016년 2월 17일 수요일

정규식 천단위 콤마값 반환

//정규식 천단위 콤마값 반환
function comma1000(val){
return val.replace(/(\d)(?=(?:\d{3})+(?!\d))/g,'$1,');
}

Share:

댓글 2개: