javascript number_format(넘버포멧 콤마 찍기)
페이지 정보
본문
출처 : http://blog.naver.com/sch30217?Redirect=Log&logNo=150080597783
function addCommas(nStr)
{
nStr += '';
x = nStr.split('.');
x1 = x[0];
x2 = x.length > 1 ? '.' + x[1] : '';
var rgx = /(\d+)(\d{3})/;
while (rgx.test(x1)) {
x1 = x1.replace(rgx, '$1' + ',' + '$2');
}
return x1 + x2;
}
document.write(addCommas("1000000"));
//result : 10,000,000[출처] javascript number format(넘버포멧 콤마 찍기)
|작성자 무지개똥
function addCommas(nStr)
{
nStr += '';
x = nStr.split('.');
x1 = x[0];
x2 = x.length > 1 ? '.' + x[1] : '';
var rgx = /(\d+)(\d{3})/;
while (rgx.test(x1)) {
x1 = x1.replace(rgx, '$1' + ',' + '$2');
}
return x1 + x2;
}
document.write(addCommas("1000000"));
//result : 10,000,000[출처] javascript number format(넘버포멧 콤마 찍기)
|작성자 무지개똥
- 이전글체크박스 처리하기 checkbox (배열로) 21.02.10
- 다음글input type="text" 에서 글 쓰지 못하게 막기 ( readonly, disabled ) 21.02.10
댓글목록
등록된 댓글이 없습니다.