JQueryを使用して3桁ごとにカンマ区切りを使用して数値をフォーマットするにはどうすればよいですか?
例えば:
╔═══════════╦═════════════╗
║ Input ║ Output ║
╠═══════════╬═════════════╣
║ 298 ║ 298 ║
║ 2984 ║ 2,984 ║
║ 297312984 ║ 297,312,984 ║
╚═══════════╩═════════════╝
@Paul Creaseyには正規表現として最もシンプルなソリューションがありましたが、ここではシンプルなjQueryプラグインとして使用しています。
$.fn.digits = function(){
return this.each(function(){
$(this).text( $(this).text().replace(/(\d)(?=(\d\d\d)+(?!\d))/g, "$1,") );
})
}
次のように使用できます。
$("span.numbers").digits();
Number.toLocaleString()
を使用できます。
var number = 1557564534;
document.body.innerHTML = number.toLocaleString();
// 1,557,564,534
正規表現に興味がある場合は、このようなものになります。置換トーの正確な構文はわかりません!
MyNumberAsString.replace(/(\d)(?=(\d\d\d)+(?!\d))/g, "$1,");
NumberFormatter を試すことができます。
$(this).format({format:"#,###.00", locale:"us"});
もちろん、米国を含むさまざまなロケールもサポートしています。
使い方の非常に単純化された例を次に示します。
<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="jquery.numberformatter.js"></script>
<script>
$(document).ready(function() {
$(".numbers").each(function() {
$(this).format({format:"#,###", locale:"us"});
});
});
</script>
</head>
<body>
<div class="numbers">1000</div>
<div class="numbers">2000000</div>
</body>
</html>
出力:
1,000
2,000,000
これはjQueryではありませんが、私には役立ちます。 このサイト から取得。
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;
}
2016回答:
Javascriptにはこの機能があるため、Jqueryは必要ありません。
yournumber.toLocaleString("en");
関数Number()を使用します。
$(function() {
var price1 = 1000;
var price2 = 500000;
var price3 = 15245000;
$("span#s1").html(Number(price1).toLocaleString('en'));
$("span#s2").html(Number(price2).toLocaleString('en'));
$("span#s3").html(Number(price3).toLocaleString('en'));
console.log(Number(price).toLocaleString('en'));
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<span id="s1"></span><br />
<span id="s2"></span><br />
<span id="s3"></span><br />
これの中核はreplace
呼び出しです。これまでのところ、提案されたソリューションのいずれも、以下のすべてのケースを処理するとは考えていません。
1000 => '1,000'
'1000' => '1,000'
10000.00 => '10,000.00'
'01000.00 => '1,000.00'
'1000.00000' => '1,000.00000'
-
または+
を保持します:'-1000.0000' => '-1,000.000'
'1000k' => '1000k'
次の関数は、上記のすべてを実行します。
addCommas = function(input){
// If the regex doesn't match, `replace` returns the string unmodified
return (input.toString()).replace(
// Each parentheses group (or 'capture') in this regex becomes an argument
// to the function; in this case, every argument after 'match'
/^([-+]?)(0?)(\d+)(.?)(\d+)$/g, function(match, sign, zeros, before, decimal, after) {
// Less obtrusive than adding 'reverse' method on all strings
var reverseString = function(string) { return string.split('').reverse().join(''); };
// Insert commas every three characters from the right
var insertCommas = function(string) {
// Reverse, because it's easier to do things from the left
var reversed = reverseString(string);
// Add commas every three characters
var reversedWithCommas = reversed.match(/.{1,3}/g).join(',');
// Reverse again (back to normal)
return reverseString(reversedWithCommas);
};
// If there was no decimal, the last capture grabs the final digit, so
// we have to put it back together with the 'before' substring
return sign + (decimal ? insertCommas(before) + decimal + after : insertCommas(before + after));
}
);
};
次のようなjQueryプラグインで使用できます。
$.fn.addCommas = function() {
$(this).each(function(){
$(this).text(addCommas($(this).text()));
});
};
Jquery FormatCurrency plugin(その著者です)もご覧ください。複数のロケールもサポートしていますが、必要のない通貨サポートのオーバーヘッドがある場合があります。
$(this).formatCurrency({ symbol: '', roundToDecimalPlace: 0 });
これは私のJavaScriptで、Firefoxとchromeでのみテストされています
<html>
<header>
<script>
function addCommas(str){
return str.replace(/^0+/, '').replace(/\D/g, "").replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}
function test(){
var val = document.getElementById('test').value;
document.getElementById('test').value = addCommas(val);
}
</script>
</header>
<body>
<input id="test" onkeyup="test();">
</body>
</html>
非常に簡単な方法は、toLocaleString()
関数を使用することです
tot = Rs.1402598 //Result : Rs.1402598
tot.toLocaleString() //Result : Rs.1,402,598