NumberFormat javascriptで数値にカンマの追加

var numberFormat = function(num){
  return num.toString().replace(/^\d+[^\.]/, function(t){return t.replace(/([\d]+?)(?=(?:\d{3})+$)/g, function(t){ return t + ','; });});
}

小数点対応

参考:http://d.hatena.ne.jp/mtoyoshi/20090321/1237723345

web拍手
This entry was posted in javascript. Bookmark the permalink.

コメントを残す

メールアドレスが公開されることはありません。

次のHTML タグと属性が使えます: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>