මම ජාවාස්ක්රිප්ට් හි මිලක් ආකෘතිකරණය කිරීමට කැමතියි. මම float
තර්කයක් ලෙස ගෙන මේ ආකාරයට string
ආකෘතිගත කළ ශ්රිතයකට කැමතියි:
"$ 2,500.00"
මෙය කිරීමට හොඳම ක්රමය කුමක්ද?
මම ජාවාස්ක්රිප්ට් හි මිලක් ආකෘතිකරණය කිරීමට කැමතියි. මම float
තර්කයක් ලෙස ගෙන මේ ආකාරයට string
ආකෘතිගත කළ ශ්රිතයකට කැමතියි:
"$ 2,500.00"
මෙය කිරීමට හොඳම ක්රමය කුමක්ද?
Answers:
මෙම විසඳුම සෑම ප්රධාන බ්රව්සරයක් සමඟම අනුකූල වේ:
const profits = 2489.8237;
profits.toFixed(3) //returns 2489.824 (rounds up)
profits.toFixed(2) //returns 2489.82
profits.toFixed(7) //returns 2489.8237000 (pads the decimals)
ඔබට අවශ්ය වන්නේ මුදල් සංකේතය (උදා "$" + profits.toFixed(2)
) එකතු කිරීම පමණක් වන අතර ඔබේ මුදල ඩොලර් වලින් ලැබෙනු ඇත.
,
එක් එක් ඉලක්කම් අතර භාවිතය ඔබට අවශ්ය නම් , ඔබට මෙම ශ්රිතය භාවිතා කළ හැකිය:
function formatMoney(number, decPlaces, decSep, thouSep) {
decPlaces = isNaN(decPlaces = Math.abs(decPlaces)) ? 2 : decPlaces,
decSep = typeof decSep === "undefined" ? "." : decSep;
thouSep = typeof thouSep === "undefined" ? "," : thouSep;
var sign = number < 0 ? "-" : "";
var i = String(parseInt(number = Math.abs(Number(number) || 0).toFixed(decPlaces)));
var j = (j = i.length) > 3 ? j % 3 : 0;
return sign +
(j ? i.substr(0, j) + thouSep : "") +
i.substr(j).replace(/(\decSep{3})(?=\decSep)/g, "$1" + thouSep) +
(decPlaces ? decSep + Math.abs(number - i).toFixed(decPlaces).slice(2) : "");
}
document.getElementById("b").addEventListener("click", event => {
document.getElementById("x").innerText = "Result was: " + formatMoney(document.getElementById("d").value);
});
<label>Insert your amount: <input id="d" type="text" placeholder="Cash amount" /></label>
<br />
<button id="b">Get Output</button>
<p id="x">(press button to get output)</p>
එය එසේ භාවිතා කරන්න:
(123456789.12345).formatMoney(2, ".", ",");
ඔබ සැමවිටම 'භාවිතා කිරීමට යන්නේ නම්.' සහ ',', ඔබට ඒවා ඔබගේ ක්රමවේදය ඇමතුමෙන් ඉවත් කළ හැකි අතර, එම ක්රමය ඔබ වෙනුවෙන් පෙරනිමිය හැක.
(123456789.12345).formatMoney(2);
ඔබේ සංස්කෘතියට සංකේත දෙක පෙරළී තිබේ නම් (එනම් යුරෝපීයයන්) සහ ඔබ පෙරනිමි භාවිතා කිරීමට කැමති නම්, ක්රමයේ පහත දැක්වෙන පේළි දෙක මත අලවන්න formatMoney
:
d = d == undefined ? "," : d,
t = t == undefined ? "." : t,
ඔබට නවීන ECMAScript සින්ටැක්ස් (එනම් බාබෙල් හරහා) භාවිතා කළ හැකි නම්, ඒ වෙනුවට ඔබට මෙම සරල ශ්රිතය භාවිතා කළ හැකිය:
function formatMoney(amount, decimalCount = 2, decimal = ".", thousands = ",") {
try {
decimalCount = Math.abs(decimalCount);
decimalCount = isNaN(decimalCount) ? 2 : decimalCount;
const negativeSign = amount < 0 ? "-" : "";
let i = parseInt(amount = Math.abs(Number(amount) || 0).toFixed(decimalCount)).toString();
let j = (i.length > 3) ? i.length % 3 : 0;
return negativeSign + (j ? i.substr(0, j) + thousands : '') + i.substr(j).replace(/(\d{3})(?=\d)/g, "$1" + thousands) + (decimalCount ? decimal + Math.abs(amount - i).toFixed(decimalCount).slice(2) : "");
} catch (e) {
console.log(e)
}
};
document.getElementById("b").addEventListener("click", event => {
document.getElementById("x").innerText = "Result was: " + formatMoney(document.getElementById("d").value);
});
<label>Insert your amount: <input id="d" type="text" placeholder="Cash amount" /></label>
<br />
<button id="b">Get Output</button>
<p id="x">(press button to get output)</p>
d
හා t
විය .
හා ,
ඔබ ඔවුන් සෑම අවස්ථාවකදීම නියම කිරීමට ඇති නොවන බව එසේ පිළිවෙළින්. return
කියවීමට ප්රකාශයේ ආරම්භය වෙනස් කිරීමට මම නිර්දේශ කරමි : return s + '$' + [rest]
එසේ නොමැතිනම් ඔබට ඩොලර් ලකුණක් නොලැබෙනු ඇත.
ජාවාස්ක්රිප්ට් හි සංඛ්යා හැඩතල ගැන්වීමක් ඇත (ජාත්යන්තරකරණ API හි කොටසක්).
// Create our number formatter.
var formatter = new Intl.NumberFormat('en-US', {
style: 'currency',
currency: 'USD',
});
formatter.format(2500); /* $2,500.00 */
භාවිතය undefined
(පළමු තර්කය වෙනුවට 'en-US'
පද්ධති ස්ථානය (කේතය බ්රවුසරයක් ධාවනය වන නඩුවේ පරිශීලක පෙදෙසිය) භාවිතා කිරීමේ උදාහරණය තුල). ස්ථාන කේතය පිළිබඳ වැඩිදුර පැහැදිලි කිරීම .
මෙන්න මුදල් කේත ලැයිස්තුවක් .
මෙය පැරණි දේ සමඟ සංසන්දනය කරන අවසාන සටහනකි. toLocaleString
. ඔවුන් දෙදෙනාම එකම ක්රියාකාරීත්වයක් ලබා දෙයි. කෙසේ වෙතත්, ToLocaleString එහි පැරණි අවතාරවල (පෙර-ඉන්ටෙල්) ඇත්ත වශයෙන්ම ස්ථාන වලට සහය නොදක්වයි : එය පද්ධති පෙදෙසි භාවිතා කරයි. එමනිසා, ඔබ නිවැරදි අනුවාදය භාවිතා කරන බවට වග බලා ගන්න ( MDN හි පැවැත්ම පරීක්ෂා කිරීමට යෝජනා කරයිIntl
). එසේම, දෙකෙහිම ක්රියාකාරීත්වය එක් අයිතමයක් සඳහා සමාන වේ , නමුත් ඔබට ආකෘතිකරණය කිරීමට විශාල සංඛ්යාවක් තිබේ නම්, භාවිතා Intl.NumberFormat
කිරීම ~ 70 ගුණයකින් වේගවත් වේ. භාවිතා කරන ආකාරය මෙන්න toLocaleString
:
(2500).toLocaleString('en-US', {
style: 'currency',
currency: 'USD',
}); /* $2,500.00 */
(12345.67).toFixed(2).replace(/\d(?=(\d{3})+\.)/g, '$&,'); // 12,345.67
මෙම විසඳුම පිටුපස ඇති අදහස වන්නේ ගැලපෙන කොටස් පළමු තරගය සහ කොමාව සමඟ ප්රතිස්ථාපනය කිරීමයි, එනම් '$&,'
. ගැලපීම සිදු කරනුයේ බැලීමේ ප්රවේශයෙනි . ඔබට “සංඛ්යා සංඛ්යාවක් ගැලපෙන්නේ නම් අංක තුනක අනුපිළිවෙලක් (එකක් හෝ වැඩි ගණනක්) සහ තිතක්” ලෙස ඔබට කියවිය හැකිය .
පරීක්ෂණ:
1 --> "1.00"
12 --> "12.00"
123 --> "123.00"
1234 --> "1,234.00"
12345 --> "12,345.00"
123456 --> "123,456.00"
1234567 --> "1,234,567.00"
12345.67 --> "12,345.67"
ඩෙමෝ: http://jsfiddle.net/hAfMM/9571/
Number
ඕනෑම දශම ගණනකට සහ සංඛ්යා [0 .. n]
කාණ්ඩවල ප්රමාණයට අමතර සහය එක් කිරීමට ඔබට වස්තුවේ මූලාකෘතිය දිගු කළ හැකිය [0 .. x]
:
/**
* Number.prototype.format(n, x)
*
* @param integer n: length of decimal
* @param integer x: length of sections
*/
Number.prototype.format = function(n, x) {
var re = '\\d(?=(\\d{' + (x || 3) + '})+' + (n > 0 ? '\\.' : '$') + ')';
return this.toFixed(Math.max(0, ~~n)).replace(new RegExp(re, 'g'), '$&,');
};
1234..format(); // "1,234"
12345..format(2); // "12,345.00"
123456.7.format(3, 2); // "12,34,56.700"
123456.789.format(2, 4); // "12,3456.79"
ඩෙමෝ / ටෙස්ට්: http://jsfiddle.net/hAfMM/435/
මෙම සුපිරි විස්තාරණ අනුවාදයේ දී ඔබට විවිධ පරිසීමක වර්ග සැකසිය හැකිය:
/**
* Number.prototype.format(n, x, s, c)
*
* @param integer n: length of decimal
* @param integer x: length of whole part
* @param mixed s: sections delimiter
* @param mixed c: decimal delimiter
*/
Number.prototype.format = function(n, x, s, c) {
var re = '\\d(?=(\\d{' + (x || 3) + '})+' + (n > 0 ? '\\D' : '$') + ')',
num = this.toFixed(Math.max(0, ~~n));
return (c ? num.replace('.', c) : num).replace(new RegExp(re, 'g'), '$&' + (s || ','));
};
12345678.9.format(2, 3, '.', ','); // "12.345.678,90"
123456.789.format(4, 4, ' ', ':'); // "12 3456:7890"
12345678.9.format(0, 3, '-'); // "12-345-679"
ඩෙමෝ / ටෙස්ට්: http://jsfiddle.net/hAfMM/612/
.replace(/(\d)(?=(\d{3})+(?:\.\d+)?$)/g, "$1,")
.
Number.prototype.toMoney = (decimal=2) -> @toFixed(decimal).replace /(\d)(?=(\d{3})+(?:\.\d+)?$)/g, "$1,"
\.
කරන්න $
, එනම් this.toFixed(0).replace(/(\d)(?=(\d{3})+$)/g, "$1,")
.
$1,
. ගැලපීම සිදු කරනුයේ බැලීමේ ප්රවේශයෙනි . ඔබට “සංඛ්යා සංඛ්යාවක් ගැලපෙන්නේ නම් අංක තුනක අනුපිළිවෙලක් (එකක් හෝ වැඩි ගණනක්) සහ තිතක්” ලෙස ඔබට කියවිය හැකිය .
ජාවාස්ක්රිප්ට් අංක වස්තුව දෙස බලා එය ඔබට උදව් කළ හැකිදැයි බලන්න.
toLocaleString()
ස්ථාන නිශ්චිත දහස් බෙදුම්කරු භාවිතා කරමින් අංකයක් සංයුති කරනු ඇත. toFixed()
නිශ්චිත දශම ස්ථාන ගණනකට සංඛ්යාව වට කරයි.මේවා එකවර භාවිතා කිරීමට නම්, එහි වර්ගය නැවත අංකයකට වෙනස් කළ යුතුය.
උදාහරණයක්:
Number((someNumber).toFixed(1)).toLocaleString()
toLocaleString
පද්ධති පෙදෙසි භාවිතා කරන පැරණි අනුවාදයක් සහ ECMAScript Intl API වෙතින් එන නව (නොගැලපෙන) එකක් ඇති බවට සැලකිලිමත් විය යුතුය . මෙහි පැහැදිලි කර ඇත . මෙම පිළිතුර පැරණි අනුවාදය සඳහා අදහස් කර ඇති බව පෙනේ.
10000
හැරෙනු ඇත . "10,000"
"10,000.00"
පහත දැක්වෙන්නේ පැට්රික් ඩෙස්ජාර්ඩින්ස් (නොහොත් ඩාවොක්) කේතය ටිකක් අදහස් එකතු කිරීම සහ සුළු වෙනස්කම් කිහිපයක් සමඟ ය:
/*
decimal_sep: character used as deciaml separtor, it defaults to '.' when omitted
thousands_sep: char used as thousands separator, it defaults to ',' when omitted
*/
Number.prototype.toMoney = function(decimals, decimal_sep, thousands_sep)
{
var n = this,
c = isNaN(decimals) ? 2 : Math.abs(decimals), //if decimal is zero we must take it, it means user does not want to show any decimal
d = decimal_sep || '.', //if no decimal separator is passed we use the dot as default decimal separator (we MUST use a decimal separator)
/*
according to [/programming/411352/how-best-to-determine-if-an-argument-is-not-sent-to-the-javascript-function]
the fastest way to check for not defined parameter is to use typeof value === 'undefined'
rather than doing value === undefined.
*/
t = (typeof thousands_sep === 'undefined') ? ',' : thousands_sep, //if you don't want to use a thousands separator you can pass empty string as thousands_sep value
sign = (n < 0) ? '-' : '',
//extracting the absolute value of the integer part of the number and converting to string
i = parseInt(n = Math.abs(n).toFixed(c)) + '',
j = ((j = i.length) > 3) ? j % 3 : 0;
return sign + (j ? i.substr(0, j) + t : '') + i.substr(j).replace(/(\d{3})(?=\d)/g, "$1" + t) + (c ? d + Math.abs(n - i).toFixed(c).slice(2) : '');
}
මෙහි පරීක්ෂණ කිහිපයක්:
//some tests (do not forget parenthesis when using negative numbers and number with no decimals)
alert(123456789.67392.toMoney() + '\n' + 123456789.67392.toMoney(3) + '\n' + 123456789.67392.toMoney(0) + '\n' + (123456).toMoney() + '\n' + (123456).toMoney(0) + '\n' + 89.67392.toMoney() + '\n' + (89).toMoney());
//some tests (do not forget parenthesis when using negative numbers and number with no decimals)
alert((-123456789.67392).toMoney() + '\n' + (-123456789.67392).toMoney(-3));
සුළු වෙනස්කම් නම්:
Math.abs(decimals)
කළ යුතු දේ මඳක් ඉදිරියට ගෙන ගියේ නැති විට පමණි NaN
.
decimal_sep
තවදුරටත් හිස් නූලක් විය නොහැක (යම් ආකාරයක දශම බෙදුම්කරුවෙකු තිබිය යුතුය)
ජාවාස්ක්රිප්ට් ශ්රිතයට තර්කයක් යවා නොමැතිද යන්න තීරණය කරන්නේ කෙසේද යන්න තීරණයtypeof thousands_sep === 'undefined'
කර ඇති ආකාරයට අපි භාවිතා කරමු
(+n || 0)
අවශ්ය නොවන නිසා this
කියන්නේ Number
වස්තුව
parseInt
සංඛ්යාව වන පූර්ණ කොටසක් නිරපේක්ෂ අගය මත ලෙස හැඳින්වේ. INTEGER කොටස ZERO සමඟ ආරම්භ කළ නොහැක. සහ parseInt(0) === 0
අෂ්ටක හෝ දශම.
0
අෂ්ටක ලෙස සලකන බව මම තේරුම් ගතිමි parseInt
. නමුත් මෙම කේතය දී දුන්නෙ parseInt
ලබා ගැනීමට 016
සඳහා සම්මත කරන ලද තර්කය නිසා, ආදාන (හෝ වෙනත් ඕනෑම octal ෆෝමැට් අගය) ලෙස parseInt
විසින් සකස් 1 වන වන Math.abs
කාර්යය. එබැවින් parseInt
ශුන්යයෙන් ආරම්භ වන සංඛ්යාවක් ලබා ගැනීමට ක්රමයක් නැත, එය ශුන්යයක් හෝ 0.nn
( nn
දශමයන් ඇති තැන) මිස . නමුත් දෙකම 0
සහ 0.nn
නූල් parseInt
සරල ZERO බවට පරිවර්තනය කරනු ලැබේ.
මුදල අංකය නම්, කියන්න -123
නම්,
amount.toLocaleString('en-US', { style: 'currency', currency: 'USD' });
නූල නිපදවනු ඇත "-$123.00"
.
මෙන්න සම්පූර්ණ වැඩ කරන උදාහරණයකි .
minimumFractionDigits: 0
account.js යනු අංකය, මුදල් සහ මුදල් ආකෘතිකරණය සඳහා ඉතා කුඩා ජාවාස්ක්රිප්ට් පුස්තකාලයකි.
මෙන්න මම දැක ඇති හොඳම ජාවාස්ක්රිප්ට් මුදල් ආකෘති පත්රය:
Number.prototype.formatMoney = function(decPlaces, thouSeparator, decSeparator) {
var n = this,
decPlaces = isNaN(decPlaces = Math.abs(decPlaces)) ? 2 : decPlaces,
decSeparator = decSeparator == undefined ? "." : decSeparator,
thouSeparator = thouSeparator == undefined ? "," : thouSeparator,
sign = n < 0 ? "-" : "",
i = parseInt(n = Math.abs(+n || 0).toFixed(decPlaces)) + "",
j = (j = i.length) > 3 ? j % 3 : 0;
return sign + (j ? i.substr(0, j) + thouSeparator : "") + i.substr(j).replace(/(\d{3})(?=\d)/g, "$1" + thouSeparator) + (decPlaces ? decSeparator + Math.abs(n - i).toFixed(decPlaces).slice(2) : "");
};
එය නැවත ආකෘතිකරණය කර ණයට ගත්තේ මෙතැනින්: https://stackoverflow.com/a/149099/751484
ඔබට ඔබේම මුදල් නිර්මාණකරුවෙකු සැපයීමට සිදුවේ (ඔබ ඉහත භාවිතා කළේ $).
එය මේ ආකාරයට අමතන්න (ආර්ග්ස් පෙරනිමිය 2, කොමාව සහ කාල පරිච්ඡේදය දක්වා ඇති බව සලකන්න, එබැවින් ඔබේ මනාපය නම් ඔබට කිසිදු ආරුක්කු සැපයීමට අවශ්ය නොවේ):
var myMoney=3543.75873;
var formattedMoney = '$' + myMoney.formatMoney(2,',','.'); // "$3,543.76"
var
ප්රකාශයේ ඉන්නවා.
දැනටමත් මෙහි විශිෂ්ට පිළිතුරු කිහිපයක් තිබේ. විනෝදය සඳහා තවත් උත්සාහයක් මෙන්න:
function formatDollar(num) {
var p = num.toFixed(2).split(".");
return "$" + p[0].split("").reverse().reduce(function(acc, num, i, orig) {
return num=="-" ? acc : num + (i && !(i % 3) ? "," : "") + acc;
}, "") + "." + p[1];
}
සහ සමහර පරීක්ෂණ:
formatDollar(45664544.23423) // "$45,664,544.23"
formatDollar(45) // "$45.00"
formatDollar(123) // "$123.00"
formatDollar(7824) // "$7,824.00"
formatDollar(1) // "$1.00"
සංස්කරණය කරන ලදි: දැන් එය negative ණ සංඛ්යා ද හසුරුවනු ඇත
i = orig.length - i - 1
. තවමත්, අරාවෙහි එක් අඩු ගමන් මාර්ගයක්.
reduce
අනුකූලතාව පිළිබඳ නොවේ: මෙම ක්රමය එක්ස්මස්ක්රිප්ට් 1.8 හි හඳුන්වා දී ඇති අතර ඉන්ටර්නෙට් එක්ස්ප්ලෝරර් 8 සහ ඊට පහළින් සහය නොදක්වයි.
සියලුම වර්තමාන බ්රව්සර් සඳහා ක්රියා කරයි
toLocaleString
භාෂාවක් සංවේදී නිරූපණයක් තුළ මුදල් සංයුති කිරීමට භාවිතා කරන්න ( ISO 4217 මුදල් කේත භාවිතා කරමින් ).
(2500).toLocaleString("en-GB", {style: "currency", currency: "GBP", minimumFractionDigits: 2})
උදාහරණය @avenmore සඳහා දකුණු අප්රිකානු රැන්ඩ් කේත ස්නිපට
console.log((2500).toLocaleString("en-ZA", {style: "currency", currency: "ZAR", minimumFractionDigits: 2}))
// -> R 2 500,00
console.log((2500).toLocaleString("en-GB", {style: "currency", currency: "ZAR", minimumFractionDigits: 2}))
// -> ZAR 2,500.00
මම හිතන්නේ ඔබට අවශ්ය දේ f.nettotal.value = "$" + showValue.toFixed(2);
Numeral.js - @adamwdraper විසින් පහසු අංක ආකෘතිකරණය සඳහා js පුස්තකාලයක්
numeral(23456.789).format('$0,0.00'); // = "$23,456.79"
හරි, ඔබ කී දේ මත පදනම්ව, මම මෙය භාවිතා කරමි:
var DecimalSeparator = Number("1.2").toLocaleString().substr(1,1);
var AmountWithCommas = Amount.toLocaleString();
var arParts = String(AmountWithCommas).split(DecimalSeparator);
var intPart = arParts[0];
var decPart = (arParts.length > 1 ? arParts[1] : '');
decPart = (decPart + '00').substr(0,2);
return '£ ' + intPart + DecimalSeparator + decPart;
වැඩිදියුණු කිරීමේ යෝජනා සඳහා මම විවෘතව සිටිමි (මෙය සිදු කිරීම සඳහා යූඅයි ඇතුළත් නොකිරීමට මම කැමතියි :-)) මම දැනටමත් දන්නවා "මම" හඳුනාගත යුතු බව. එය දශම බෙදුම්කරු ලෙස භාවිතා කරනවා වෙනුවට ...
මම පුස්තකාලය භාවිතා කරන්නේ ගෝලීයකරණය (මයික්රොසොෆ්ට් වෙතින්):
අංක, මුදල් සහ දිනයන් දේශීයකරණය කිරීම සහ පරිශීලක පෙදෙසට අනුව ඒවා ස්වයංක්රීයව නිවැරදිව ආකෘතිකරණය කිරීම විශිෂ්ට ව්යාපෘතියකි! ... එය jQuery දිගුවක් විය යුතු වුවත්, එය දැනට 100% ස්වාධීන පුස්තකාලයකි. එය අත්හදා බැලීමට මම ඔබ සැමට යෝජනා කරමි! :)
javascript-number-formatter (කලින් ගූගල් කේතයේ )
#,##0.00
ප්රතික්ෂේප කිරීම වැනි හෝ සම්මත සංඛ්යා ආකෘතිකරණය පිළිගන්න -000.####
.# ##0,00
, #,###.##
, #'###.##
හෝ අංක නොවන සංකේතය ඕනෑම ආකාරයේ.#,##,#0.000
හෝ #,###0.##
සියල්ල වලංගු වේ.##,###,##.#
නැත්නම් 0#,#00#.###0#
ඔක්කොම හරි.format( "0.0000", 3.141592)
.(එහි README වෙතින් උපුටා ගැනීමකි)
මුල් ක්රමය සැපයීම සඳහා ජොනතන් එම් වෙත +1 කරන්න. මෙය පැහැදිලිවම මුදල් හැඩතල ගැන්වීමක් බැවින්, මම ඉදිරියට ගොස් මුදල් සංකේතය (පෙරනිමියෙන් '$') ප්රතිදානයට එකතු කර දහස් සංඛ්යාත බෙදුම්කරු ලෙස පෙරනිමි කොමාව එක් කළෙමි. ඔබට ඇත්ත වශයෙන්ම මුදල් සංකේතයක් (හෝ දහස් ගණනක් බෙදුම්කරු) අවශ්ය නොවන්නේ නම්, ඒ සඳහා ඔබේ තර්කය ලෙස "" (හිස් නූල) භාවිතා කරන්න.
Number.prototype.formatMoney = function(decPlaces, thouSeparator, decSeparator, currencySymbol) {
// check the args and supply defaults:
decPlaces = isNaN(decPlaces = Math.abs(decPlaces)) ? 2 : decPlaces;
decSeparator = decSeparator == undefined ? "." : decSeparator;
thouSeparator = thouSeparator == undefined ? "," : thouSeparator;
currencySymbol = currencySymbol == undefined ? "$" : currencySymbol;
var n = this,
sign = n < 0 ? "-" : "",
i = parseInt(n = Math.abs(+n || 0).toFixed(decPlaces)) + "",
j = (j = i.length) > 3 ? j % 3 : 0;
return sign + currencySymbol + (j ? i.substr(0, j) + thouSeparator : "") + i.substr(j).replace(/(\d{3})(?=\d)/g, "$1" + thouSeparator) + (decPlaces ? decSeparator + Math.abs(n - i).toFixed(decPlaces).slice(2) : "");
};
+n || 0
එය ටිකක් අමුතු යැයි පෙනෙන එකම දෙයයි (කෙසේ වෙතත් මට).
this
යනු ඉතා ප්රයෝජනවත් විචල්ය නමකි. n
කේබී හි RAM සහ කලාප පළල ගණනය කරන ලද යුගයකදී ඔබට එය අර්ථ දැක්වීමේ වේලාවට අක්ෂර 3 ක් ඉතිරි කර ගත හැකි විය හැකි නමුත් එය හුදෙක් නිශ්ශබ්දතාවයට පත්වන්නේ එය නිෂ්පාදනයට පැමිණීමට පෙර මිනිෆයර් ඒ සියල්ල බලා ගන්නා යුගයක ය. අනෙක් දක්ෂ ක්ෂුද්ර ප්රශස්තිකරණය අවම වශයෙන් විවාදාත්මක ය.
නිත්ය ප්රකාශනය සමඟ කෙටි ක්රමයක් (අවකාශය, කොමාව හෝ ලක්ෂ්යය ඇතුළු කිරීම සඳහා)?
Number.prototype.toCurrencyString=function(){
return this.toFixed(2).replace(/(\d)(?=(\d{3})+\b)/g,'$1 ');
}
n=12345678.9;
alert(n.toCurrencyString());
PHP ශ්රිතයේ "number_format" හි ජාවාස්ක්රිප්ට් පෝට් එකක් ඇත.
PHP සංවර්ධකයින්ට භාවිතා කිරීමට පහසු සහ හඳුනාගත හැකි බැවින් එය ඉතා ප්රයෝජනවත් බව මට පෙනේ.
function number_format (number, decimals, dec_point, thousands_sep) {
var n = number, prec = decimals;
var toFixedFix = function (n,prec) {
var k = Math.pow(10,prec);
return (Math.round(n*k)/k).toString();
};
n = !isFinite(+n) ? 0 : +n;
prec = !isFinite(+prec) ? 0 : Math.abs(prec);
var sep = (typeof thousands_sep === 'undefined') ? ',' : thousands_sep;
var dec = (typeof dec_point === 'undefined') ? '.' : dec_point;
var s = (prec > 0) ? toFixedFix(n, prec) : toFixedFix(Math.round(n), prec);
//fix for IE parseFloat(0.55).toFixed(0) = 0;
var abs = toFixedFix(Math.abs(n), prec);
var _, i;
if (abs >= 1000) {
_ = abs.split(/\D/);
i = _[0].length % 3 || 3;
_[0] = s.slice(0,i + (n < 0)) +
_[0].slice(i).replace(/(\d{3})/g, sep+'$1');
s = _.join(dec);
} else {
s = s.replace('.', dec);
}
var decPos = s.indexOf(dec);
if (prec >= 1 && decPos !== -1 && (s.length-decPos-1) < prec) {
s += new Array(prec-(s.length-decPos-1)).join(0)+'0';
}
else if (prec >= 1 && decPos === -1) {
s += dec+new Array(prec).join(0)+'0';
}
return s;
}
( මුල් පිටුවෙන් අදහස් දැක්වීමේ කොටස , නිදසුන් සඳහා පහත ඇතුළත් කර ඇති අතර ණය ලැබිය යුතු තැන)
// Formats a number with grouped thousands
//
// version: 906.1806
// discuss at: http://phpjs.org/functions/number_format
// + original by: Jonas Raoni Soares Silva (http://www.jsfromhell.com)
// + improved by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
// + bugfix by: Michael White (http://getsprink.com)
// + bugfix by: Benjamin Lupton
// + bugfix by: Allan Jensen (http://www.winternet.no)
// + revised by: Jonas Raoni Soares Silva (http://www.jsfromhell.com)
// + bugfix by: Howard Yeend
// + revised by: Luke Smith (http://lucassmith.name)
// + bugfix by: Diogo Resende
// + bugfix by: Rival
// + input by: Kheang Hok Chin (http://www.distantia.ca/)
// + improved by: davook
// + improved by: Brett Zamir (http://brett-zamir.me)
// + input by: Jay Klehr
// + improved by: Brett Zamir (http://brett-zamir.me)
// + input by: Amir Habibi (http://www.residence-mixte.com/)
// + bugfix by: Brett Zamir (http://brett-zamir.me)
// * example 1: number_format(1234.56);
// * returns 1: '1,235'
// * example 2: number_format(1234.56, 2, ',', ' ');
// * returns 2: '1 234,56'
// * example 3: number_format(1234.5678, 2, '.', '');
// * returns 3: '1234.57'
// * example 4: number_format(67, 2, ',', '.');
// * returns 4: '67,00'
// * example 5: number_format(1000);
// * returns 5: '1,000'
// * example 6: number_format(67.311, 2);
// * returns 6: '67.31'
// * example 7: number_format(1000.55, 1);
// * returns 7: '1,000.6'
// * example 8: number_format(67000, 5, ',', '.');
// * returns 8: '67.000,00000'
// * example 9: number_format(0.9, 0);
// * returns 9: '1'
// * example 10: number_format('1.20', 2);
// * returns 10: '1.20'
// * example 11: number_format('1.20', 4);
// * returns 11: '1.2000'
// * example 12: number_format('1.2000', 3);
// * returns 12: '1.200'
මේ වගේ දෙයක් දැකලා නැහැ. එය ඉතා සංක්ෂිප්ත හා තේරුම් ගැනීමට පහසුය.
function moneyFormat(price, sign = '$') {
const pieces = parseFloat(price).toFixed(2).split('')
let ii = pieces.length - 3
while ((ii-=3) > 0) {
pieces.splice(ii, 0, ',')
}
return sign + pieces.join('')
}
console.log(
moneyFormat(100),
moneyFormat(1000),
moneyFormat(10000.00),
moneyFormat(1000000000000000000)
)
විවිධ ස්ථානීය ආකෘතීන් තුළ විවිධ මුදල් ආකෘතිකරණය කිරීමට ඉඩ දීම සඳහා අවසාන නිමැවුමේ තවත් විකල්පයන් සහිත අනුවාදයක් මෙන්න.
// higher order function that takes options then a price and will return the formatted price
const makeMoneyFormatter = ({
sign = '$',
delimiter = ',',
decimal = '.',
append = false,
precision = 2,
round = true,
custom
} = {}) => value => {
const e = [1, 10, 100, 1000, 10000, 100000, 1000000, 10000000]
value = round
? (Math.round(value * e[precision]) / e[precision])
: parseFloat(value)
const pieces = value
.toFixed(precision)
.replace('.', decimal)
.split('')
let ii = pieces.length - (precision ? precision + 1 : 0)
while ((ii-=3) > 0) {
pieces.splice(ii, 0, delimiter)
}
if (typeof custom === 'function') {
return custom({
sign,
float: value,
value: pieces.join('')
})
}
return append
? pieces.join('') + sign
: sign + pieces.join('')
}
// create currency converters with the correct formatting options
const formatDollar = makeMoneyFormatter()
const formatPound = makeMoneyFormatter({
sign: '£',
precision: 0
})
const formatEuro = makeMoneyFormatter({
sign: '€',
delimiter: '.',
decimal: ',',
append: true
})
const customFormat = makeMoneyFormatter({
round: false,
custom: ({ value, float, sign }) => `SALE:$${value}USD`
})
console.log(
formatPound(1000),
formatDollar(10000.0066),
formatEuro(100000.001),
customFormat(999999.555)
)
පැට්රික් ඩෙස්ජාර්ඩින්ස්ගේ පිළිතුර හොඳ පෙනුමක් ඇති නමුත් මම කැමතියි මගේ ජාවාස්ක්රිප්ට් සරලයි. මෙන්න මම දැන් ලියා ඇති අංකයක් ගෙන එය මුදල් ආකෘතියෙන් ආපසු ලබා දීමට (ඩොලර් ලකුණ us ණ)
// Format numbers to two decimals with commas
function formatDollar(num) {
var p = num.toFixed(2).split(".");
var chars = p[0].split("").reverse();
var newstr = '';
var count = 0;
for (x in chars) {
count++;
if(count%3 == 1 && count != 1) {
newstr = chars[x] + ',' + newstr;
} else {
newstr = chars[x] + newstr;
}
}
return newstr + "." + p[1];
}
ප්රධාන කොටස වන්නේ බෙදුම්කරුවන් දහසක් ඇතුළත් කිරීමයි, එය මේ ආකාරයෙන් කළ හැකිය:
<script type="text/javascript">
function ins1000Sep(val){
val = val.split(".");
val[0] = val[0].split("").reverse().join("");
val[0] = val[0].replace(/(\d{3})/g,"$1,");
val[0] = val[0].split("").reverse().join("");
val[0] = val[0].indexOf(",")==0?val[0].substring(1):val[0];
return val.join(".");
}
function rem1000Sep(val){
return val.replace(/,/g,"");
}
function formatNum(val){
val = Math.round(val*100)/100;
val = (""+val).indexOf(".")>-1 ? val + "00" : val + ".00";
var dec = val.indexOf(".");
return dec == val.length-3 || dec == 0 ? val : val.substring(0,dec+3);
}
</script>
<button onclick="alert(ins1000Sep(formatNum(12313231)));">
බිල්ට් function
ටෝ ෆික්ස්ඩ් ඇතjavascript
var num = new Number(349);
document.write("$" + num.toFixed(2));
toFixed()
toFixed()
Number
වස්තුවක ශ්රිතයක් වන අතර var num
එය එසේ නම් එය ක්රියා නොකරනු ඇත String
, එබැවින් අතිරේක සන්දර්භය මට උදව් විය.
function CurrencyFormatted(amount)
{
var i = parseFloat(amount);
if(isNaN(i)) { i = 0.00; }
var minus = '';
if(i < 0) { minus = '-'; }
i = Math.abs(i);
i = parseInt((i + .005) * 100);
i = i / 100;
s = new String(i);
if(s.indexOf('.') < 0) { s += '.00'; }
if(s.indexOf('.') == (s.length - 2)) { s += '0'; }
s = minus + s;
return s;
}
විල්මාස්ටර් වෙතින් .
ගූගල් දෘශ්යකරණ API වෙතින් අංක ෆෝමැට් පන්තිය මම යෝජනා කරමි .
ඔබට මේ වගේ දෙයක් කළ හැකිය:
var formatter = new google.visualization.NumberFormat({
prefix: '$',
pattern: '#,###,###.##'
});
formatter.formatValue(1000000); // $ 1,000,000
එය උපකාරී වේ යැයි මම බලාපොරොත්තු වෙමි.
මෙය ටිකක් ප්රමාද විය හැකිය, නමුත් මෙන්න මම .toCurrencyString()
සියලු සංඛ්යා වලට ස්ථාන දැන ගැනීමේ ශ්රිතයක් එක් කිරීම සඳහා සහායකයකු වෙනුවෙන් වැඩ කළ ක්රමයක් . අභ්යන්තරකරණය යනු අංක කාණ්ඩ කිරීම සඳහා පමණි, මුදල් ලකුණ නොවේ - ඔබ ඩොලර් ප්රතිදානය කරන්නේ "$"
නම්, සැපයූ පරිදි භාවිතා කරන්න , මන්ද $123 4567
ජපානයේ හෝ චීනයේ $1,234,567
එක්සත් ජනපදයේ මෙන් ඇමරිකානු ඩොලර් ගණන සමාන වේ. ඔබ යුරෝ / යනාදිය ප්රතිදානය කරන්නේ නම්, මුදල් ලකුණ වෙනස් කරන්න "$"
.
මෙය භාවිතා කිරීමට පෙර ඔබේ හිසෙහි හෝ අවශ්ය ඕනෑම තැනක මෙය ප්රකාශ කරන්න:
Number.prototype.toCurrencyString = function(prefix, suffix) {
if (typeof prefix === 'undefined') { prefix = '$'; }
if (typeof suffix === 'undefined') { suffix = ''; }
var _localeBug = new RegExp((1).toLocaleString().replace(/^1/, '').replace(/\./, '\\.') + "$");
return prefix + (~~this).toLocaleString().replace(_localeBug, '') + (this % 1).toFixed(2).toLocaleString().replace(/^[+-]?0+/,'') + suffix;
}
එහෙනම් ඔයා ඉවරයි! (number).toCurrencyString()
ඔබට මුදල් මුදල් ලෙස ප්රතිදානය කිරීමට අවශ්ය ඕනෑම තැනක භාවිතා කරන්න .
var MyNumber = 123456789.125;
alert(MyNumber.toCurrencyString()); // alerts "$123,456,789.13"
MyNumber = -123.567;
alert(MyNumber.toCurrencyString()); // alerts "$-123.57"
සාමාන්යයෙන්, එකම දේ කිරීමට විවිධ ක්රම තිබේ, නමුත් Number.prototype.toLocaleString
පරිශීලක සැකසුම් මත පදනම්ව විවිධ අගයන් ආපසු ලබා දිය හැකි බැවින් මම භාවිතා කිරීමෙන් වැළකී සිටිමි .
මම ද දීර්ඝ නිර්දේශ කරන්නේ නැහැ Number.prototype
එය අනෙක් අය කේතය සමඟ ගැටුම් ඇති විය හැක (උදා: පුස්තකාල / රාමුව / ප්ලගින) සහ අනාගත JavaScript ක්රියාත්මක කිරිමේදි / සංස්කරණ සමග අනුකූල විය නොහැකි බැවින් දේශීය වස්තූන් මූලාදර්ශවල දීර්ඝ නරක පුරුදු වේ -.
නිත්ය ප්රකාශන යනු ගැටළුව සඳහා හොඳම ප්රවේශය බව මම විශ්වාස කරමි, මෙන්න මගේ ක්රියාත්මක කිරීම:
/**
* Converts number into currency format
* @param {number} number Number that should be converted.
* @param {string} [decimalSeparator] Decimal separator, defaults to '.'.
* @param {string} [thousandsSeparator] Thousands separator, defaults to ','.
* @param {int} [nDecimalDigits] Number of decimal digits, defaults to `2`.
* @return {string} Formatted string (e.g. numberToCurrency(12345.67) returns '12,345.67')
*/
function numberToCurrency(number, decimalSeparator, thousandsSeparator, nDecimalDigits){
//default values
decimalSeparator = decimalSeparator || '.';
thousandsSeparator = thousandsSeparator || ',';
nDecimalDigits = nDecimalDigits == null? 2 : nDecimalDigits;
var fixed = number.toFixed(nDecimalDigits), //limit/add decimal digits
parts = new RegExp('^(-?\\d{1,3})((?:\\d{3})+)(\\.(\\d{'+ nDecimalDigits +'}))?$').exec( fixed ); //separate begin [$1], middle [$2] and decimal digits [$4]
if(parts){ //number >= 1000 || number <= -1000
return parts[1] + parts[2].replace(/\d{3}/g, thousandsSeparator + '$&') + (parts[4] ? decimalSeparator + parts[4] : '');
}else{
return fixed.replace('.', decimalSeparator);
}
}
2010/08/30 දින සංස්කරණය කරන ලදි: දශම සංඛ්යා ගණන සැකසීමට විකල්පයක් එක් කරන ලදි. 2011/08/23 දින සංස්කරණය කරන ලදි: දශම සංඛ්යා ගණන ශුන්යයට සැකසීමට විකල්පයක් එක් කරන ලදි.
මෙන්න විසඳුම් කිහිපයක්, සියල්ලම පරීක්ෂණ කට්ටලය පසුකර, පරීක්ෂණ කට්ටලය සහ මිණුම් ලකුණ ඇතුළත් කර ඇත, ඔබට පිටපත් කිරීමට හා ඇලවීමට අවශ්ය නම්, මෙම සාරාංශය උත්සාහ කරන්න .
Https://stackoverflow.com/a/14428340/1877620 මත පදනම් වූ නමුත් දශම ලක්ෂ්යයක් නොමැති නම් නිවැරදි කරන්න.
if (typeof Number.prototype.format === 'undefined') {
Number.prototype.format = function (precision) {
if (!isFinite(this)) {
return this.toString();
}
var a = this.toFixed(precision).split('.');
a[0] = a[0].replace(/\d(?=(\d{3})+$)/g, '$&,');
return a.join('.');
}
}
if (typeof Number.prototype.format === 'undefined') {
Number.prototype.format = function (precision) {
if (!isFinite(this)) {
return this.toString();
}
var a = this.toFixed(precision).split('.'),
// skip the '-' sign
head = Number(this < 0);
// skip the digits that's before the first thousands separator
head += (a[0].length - head) % 3 || 3;
a[0] = a[0].slice(0, head) + a[0].slice(head).replace(/\d{3}/g, ',$&');
return a.join('.');
};
}
if (typeof Number.prototype.format === 'undefined') {
Number.prototype.format = function (precision) {
if (!isFinite(this)) {
return this.toString();
}
var a = this.toFixed(precision).split('.');
a[0] = a[0]
.split('').reverse().join('')
.replace(/\d{3}(?=\d)/g, '$&,')
.split('').reverse().join('');
return a.join('.');
};
}
if (typeof Number.prototype.format === 'undefined') {
Number.prototype.format = function (precision) {
if (!isFinite(this)) {
return this.toString();
}
var a = this.toFixed(precision).split('');
a.push('.');
var i = a.indexOf('.') - 3;
while (i > 0 && a[i-1] !== '-') {
a.splice(i, 0, ',');
i -= 3;
}
a.pop();
return a.join('');
};
}
console.log('======== Demo ========')
console.log(
(1234567).format(0),
(1234.56).format(2),
(-1234.56).format(0)
);
var n = 0;
for (var i=1; i<20; i++) {
n = (n * 10) + (i % 10)/100;
console.log(n.format(2), (-n).format(2));
}
අපට අභිරුචි දහස් බෙදුම්කරු හෝ දශම බෙදුම්කරු අවශ්ය නම්, භාවිතා කරන්න replace()
:
123456.78.format(2).replace(',', ' ').replace('.', ' ');
function assertEqual(a, b) {
if (a !== b) {
throw a + ' !== ' + b;
}
}
function test(format_function) {
console.log(format_function);
assertEqual('NaN', format_function.call(NaN, 0))
assertEqual('Infinity', format_function.call(Infinity, 0))
assertEqual('-Infinity', format_function.call(-Infinity, 0))
assertEqual('0', format_function.call(0, 0))
assertEqual('0.00', format_function.call(0, 2))
assertEqual('1', format_function.call(1, 0))
assertEqual('-1', format_function.call(-1, 0))
// decimal padding
assertEqual('1.00', format_function.call(1, 2))
assertEqual('-1.00', format_function.call(-1, 2))
// decimal rounding
assertEqual('0.12', format_function.call(0.123456, 2))
assertEqual('0.1235', format_function.call(0.123456, 4))
assertEqual('-0.12', format_function.call(-0.123456, 2))
assertEqual('-0.1235', format_function.call(-0.123456, 4))
// thousands separator
assertEqual('1,234', format_function.call(1234.123456, 0))
assertEqual('12,345', format_function.call(12345.123456, 0))
assertEqual('123,456', format_function.call(123456.123456, 0))
assertEqual('1,234,567', format_function.call(1234567.123456, 0))
assertEqual('12,345,678', format_function.call(12345678.123456, 0))
assertEqual('123,456,789', format_function.call(123456789.123456, 0))
assertEqual('-1,234', format_function.call(-1234.123456, 0))
assertEqual('-12,345', format_function.call(-12345.123456, 0))
assertEqual('-123,456', format_function.call(-123456.123456, 0))
assertEqual('-1,234,567', format_function.call(-1234567.123456, 0))
assertEqual('-12,345,678', format_function.call(-12345678.123456, 0))
assertEqual('-123,456,789', format_function.call(-123456789.123456, 0))
// thousands separator and decimal
assertEqual('1,234.12', format_function.call(1234.123456, 2))
assertEqual('12,345.12', format_function.call(12345.123456, 2))
assertEqual('123,456.12', format_function.call(123456.123456, 2))
assertEqual('1,234,567.12', format_function.call(1234567.123456, 2))
assertEqual('12,345,678.12', format_function.call(12345678.123456, 2))
assertEqual('123,456,789.12', format_function.call(123456789.123456, 2))
assertEqual('-1,234.12', format_function.call(-1234.123456, 2))
assertEqual('-12,345.12', format_function.call(-12345.123456, 2))
assertEqual('-123,456.12', format_function.call(-123456.123456, 2))
assertEqual('-1,234,567.12', format_function.call(-1234567.123456, 2))
assertEqual('-12,345,678.12', format_function.call(-12345678.123456, 2))
assertEqual('-123,456,789.12', format_function.call(-123456789.123456, 2))
}
console.log('======== Testing ========');
test(Number.prototype.format);
test(Number.prototype.format1);
test(Number.prototype.format2);
test(Number.prototype.format3);
function benchmark(f) {
var start = new Date().getTime();
f();
return new Date().getTime() - start;
}
function benchmark_format(f) {
console.log(f);
time = benchmark(function () {
for (var i = 0; i < 100000; i++) {
f.call(123456789, 0);
f.call(123456789, 2);
}
});
console.log(time.format(0) + 'ms');
}
// if not using async, browser will stop responding while running.
// this will create a new thread to benchmark
async = [];
function next() {
setTimeout(function () {
f = async.shift();
f && f();
next();
}, 10);
}
console.log('======== Benchmark ========');
async.push(function () { benchmark_format(Number.prototype.format); });
next();
Number(value)
.toFixed(2)
.replace(/(\d)(?=(\d{3})+(?!\d))/g, "$1,")
පළමු හා මූලික රීජෙක්ස්ප් එක ආපසු හරවා නිසි කොමා ස්ථානගත කිරීම සඳහා සරල විකල්පයකි.
String.prototype.reverse = function() {
return this.split('').reverse().join('');
};
Number.prototype.toCurrency = function( round_decimal /*boolean*/ ) {
// format decimal or round to nearest integer
var n = this.toFixed( round_decimal ? 0 : 2 );
// convert to a string, add commas every 3 digits from left to right
// by reversing string
return (n + '').reverse().replace( /(\d{3})(?=\d)/g, '$1,' ).reverse();
};
මම මෙය සොයාගත්තේ: account.js . එය ඉතා පහසු සහ මගේ අවශ්යතාවයට හොඳින් ගැලපේ.
// Default usage:
accounting.formatMoney(12345678); // $12,345,678.00
// European formatting (custom symbol and separators), can also use options object as second parameter:
accounting.formatMoney(4999.99, "€", 2, ".", ","); // €4.999,99
// Negative values can be formatted nicely:
accounting.formatMoney(-500000, "£ ", 0); // £ -500,000
// Simple `format` string allows control of symbol position (%v = value, %s = symbol):
accounting.formatMoney(5318008, { symbol: "GBP", format: "%v %s" }); // 5,318,008.00 GBP
// Euro currency symbol to the right
accounting.formatMoney(5318008, {symbol: "€", precision: 2, thousand: ".", decimal : ",", format: "%v%s"}); // 1.008,00€
formatNumber
ජාවාස්ක්රිප්ට් හි කිසිදු සාදන ලද කාර්යයක් නොමැත