จัดรูปแบบตัวเลขเป็น 2.5K ถ้าหนึ่งหมื่นหรือมากกว่านั้นมิฉะนั้น 900


154

ฉันต้องแสดงค่าสกุลเงินในรูปแบบ 1K เท่ากับหนึ่งพันหรือ 1.1K, 1.2K, 1.9K เป็นต้นหากไม่ใช่จำนวนพันแม้แต่อย่างอื่นถ้าต่ำกว่า 1,000 แสดงปกติ 500, 100, 250 เป็นต้น ใช้จาวาสคริปต์เพื่อจัดรูปแบบตัวเลขได้อย่างไร


2
คุณยังต้องMและG?
Salman

ฉันต้องการ M ใช่ ... คุณช่วยได้ไหม
Carl Weis

คำตอบ:


209

เสียงแบบนี้น่าจะเหมาะกับคุณ:

function kFormatter(num) {
    return Math.abs(num) > 999 ? Math.sign(num)*((Math.abs(num)/1000).toFixed(1)) + 'k' : Math.sign(num)*Math.abs(num)
}
    
console.log(kFormatter(1200)); // 1.2k
console.log(kFormatter(-1200)); // -1.2k
console.log(kFormatter(900)); // 900
console.log(kFormatter(-900)); // -900


2
แนะนำการแก้ไขเล็กน้อย ... ควรเป็นตัวพิมพ์เล็ก k สำหรับหลักพัน ด้านบนสำหรับกิโลกรัม พยายามแก้ไข แต่ต้องเปลี่ยนอย่างน้อย 6 ตัวอักษรก่อนจึงจะใช้งานได้
Adam Youngers

ฉันจะแทรกตัวแปร php ภายในที่นี่และใช้งานได้อย่างไร คือถ้าตัวแปรหมายเลขของฉันฉัน$mynumber_outputจะใส่ที่จะใช้มันได้ที่ไหน ตัวอย่างเช่น say $mynumber_output= 12846 ฉันต้องการ 12846 แปลงเป็น12.8k

โปรดทราบว่าหนึ่งกิโลไบต์คือ 1024 ไบต์ในบางกรณี: en.wikipedia.org/wiki/Kilobyte
Olle Härstedt

มีความคิดอย่างไรที่เราสามารถสร้าง 1,000 display เป็น 1.0k แทนที่จะเป็น 1k
เบรนต์

1
ไม่ตอบคำถามของผู้ใช้อย่างสมบูรณ์ "ฉันต้องการ M ใช่ ... คุณช่วยได้ไหม" - Carl Weis
tfmontague

217

รุ่นที่กว้างขึ้น:

function nFormatter(num, digits) {
  var si = [
    { value: 1, symbol: "" },
    { value: 1E3, symbol: "k" },
    { value: 1E6, symbol: "M" },
    { value: 1E9, symbol: "G" },
    { value: 1E12, symbol: "T" },
    { value: 1E15, symbol: "P" },
    { value: 1E18, symbol: "E" }
  ];
  var rx = /\.0+$|(\.[0-9]*[1-9])0+$/;
  var i;
  for (i = si.length - 1; i > 0; i--) {
    if (num >= si[i].value) {
      break;
    }
  }
  return (num / si[i].value).toFixed(digits).replace(rx, "$1") + si[i].symbol;
}

/*
 * Tests
 */
var tests = [
  { num: 1234, digits: 1 },
  { num: 100000000, digits: 1 },
  { num: 299792458, digits: 1 },
  { num: 759878, digits: 1 },
  { num: 759878, digits: 0 },
  { num: 123, digits: 1 },
  { num: 123.456, digits: 1 },
  { num: 123.456, digits: 2 },
  { num: 123.456, digits: 4 }
];
var i;
for (i = 0; i < tests.length; i++) {
  console.log("nFormatter(" + tests[i].num + ", " + tests[i].digits + ") = " + nFormatter(tests[i].num, tests[i].digits));
}


@SalmanA - ความช่วยเหลือที่ดีมันล้มเหลวถ้าหนึ่งผ่าน arg เป็นสตริงถ้าทำความสะอาดด้วย parseFloat ทำงานได้ดี ขอบคุณ!
Adesh M

1
แก้ไข
เล็กน้อย

1
@GiovanniAzua เพียงแทนที่if (num >= si[i].value)ด้วยif (Math.abs(num) >= si[i].value)
Salman A

สิ่งที่ไม่.replace(rx, "$1")ทำอะไร?
M.Octavio

1
@ M.Octavio regex ใช้เพื่อตัดค่าศูนย์ต่อท้ายเช่น1.0กลายเป็น1และ1.10กลายเป็น1.1
Salman

78

นี่เป็นวิธีง่ายๆที่หลีกเลี่ยงข้อความทั้งหมดif(ด้วยพลังของMath)

var SI_SYMBOL = ["", "k", "M", "G", "T", "P", "E"];

function abbreviateNumber(number){

    // what tier? (determines SI symbol)
    var tier = Math.log10(number) / 3 | 0;

    // if zero, we don't need a suffix
    if(tier == 0) return number;

    // get suffix and determine scale
    var suffix = SI_SYMBOL[tier];
    var scale = Math.pow(10, tier * 3);

    // scale the number
    var scaled = number / scale;

    // format number and add suffix
    return scaled.toFixed(1) + suffix;
}

โบนัส Meme

สิ่งที่SIยืนหยัดเพื่อ?


ฉันชอบทางออกของคุณจริงๆ เพื่อให้สามารถตัดค่าลบให้สั้นลงได้เช่นกันฉันจะคูณจำนวนด้วย -1 ก่อนและหลังการกำหนดระดับเนื่องจาก Math.log10 (negativeValue) จะส่งกลับ NaN
xhadon

เพียงแค่ใช้เพื่อเพิ่มการสนับสนุนไปยังหมายเลขเชิงลบเช่นว่า:Math.abs var tier = Math.log10(Math.abs(number)) / 3 | 0;
Caio Tarifa

72

ปรับปรุงคำตอบของ Salman ต่อไปเพราะจะให้ผลตอบแทน nFormatter (33000) เป็น 33.0K

function nFormatter(num) {
     if (num >= 1000000000) {
        return (num / 1000000000).toFixed(1).replace(/\.0$/, '') + 'G';
     }
     if (num >= 1000000) {
        return (num / 1000000).toFixed(1).replace(/\.0$/, '') + 'M';
     }
     if (num >= 1000) {
        return (num / 1000).toFixed(1).replace(/\.0$/, '') + 'K';
     }
     return num;
}

ตอนนี้ nFormatter (33000) = 33K


2
ยังไงก็ตามที่จะทำเช่นนี้โดยไม่ต้องปัดเศษจำนวน? 1,590,000 จะส่งคืน 1.6M
Brett Hardin

3
บางครั้งมันยากที่จะรู้ว่าเมื่อใดที่จะโพสต์คำตอบใหม่ของการแก้ไขที่มีอยู่สิ่งที่ฉันใช้ในการตัดสินใจคือถ้าฉันขโมยรหัสจากผู้ใช้คนอื่นตอบฉันมักจะแก้ไขคำตอบของพวกเขาเพื่อให้พวกเขาได้รับการยอมรับ รหัส.
MH

@Yash คุณรหัสฉันพยายามที่จะใช้ในสคริปต์เคาน์เตอร์ แต่ไม่ได้รับนี้คือการเชื่อมโยงของฉัน codepen codepen.io/Merajkhan/pen/MMoxGE?editors=1010คุณสามารถช่วยฉันออกวิธีการใช้ตรรกะนี้ฉันต้องการ หน่วย K, L, M ต้องมา
Mehraj Khan

ยิ่งใหญ่ วิธีแก้ปัญหาสั้นและหวาน
Hasitha Jayawardana

22
/**
 * Shorten number to thousands, millions, billions, etc.
 * http://en.wikipedia.org/wiki/Metric_prefix
 *
 * @param {number} num Number to shorten.
 * @param {number} [digits=0] The number of digits to appear after the decimal point.
 * @returns {string|number}
 *
 * @example
 * // returns '12.5k'
 * shortenLargeNumber(12543, 1)
 *
 * @example
 * // returns '-13k'
 * shortenLargeNumber(-12567)
 *
 * @example
 * // returns '51M'
 * shortenLargeNumber(51000000)
 *
 * @example
 * // returns 651
 * shortenLargeNumber(651)
 *
 * @example
 * // returns 0.12345
 * shortenLargeNumber(0.12345)
 */
function shortenLargeNumber(num, digits) {
    var units = ['k', 'M', 'G', 'T', 'P', 'E', 'Z', 'Y'],
        decimal;

    for(var i=units.length-1; i>=0; i--) {
        decimal = Math.pow(1000, i+1);

        if(num <= -decimal || num >= decimal) {
            return +(num / decimal).toFixed(digits) + units[i];
        }
    }

    return num;
}

ขอบคุณ @Cos สำหรับความคิดเห็นฉันลบการพึ่งพา Math.round10


1
Math.abs(num) >= decimalคุณสามารถเปลี่ยนถ้าจะ
Conor Pender

18

คำตอบมากมายในเธรดนี้ค่อนข้างซับซ้อนโดยใช้วัตถุทางคณิตศาสตร์วัตถุแผนที่ for-loops, regex ฯลฯ แต่วิธีการเหล่านี้ไม่ได้ช่วยปรับปรุงความสามารถในการอ่านของโค้ดหรือประสิทธิภาพ วิธีการตรงไปตรงมาดูเหมือนจะเสนอการออกแบบที่ดีที่สุด

การจัดรูปแบบมูลค่าเงินสดด้วย K

const formatCash = n => {
  if (n < 1e3) return n;
  if (n >= 1e3) return +(n / 1e3).toFixed(1) + "K";
};

console.log(formatCash(2500));

การจัดรูปแบบมูลค่าเงินสดด้วย KMBT

const formatCash = n => {
  if (n < 1e3) return n;
  if (n >= 1e3 && n < 1e6) return +(n / 1e3).toFixed(1) + "K";
  if (n >= 1e6 && n < 1e9) return +(n / 1e6).toFixed(1) + "M";
  if (n >= 1e9 && n < 1e12) return +(n / 1e9).toFixed(1) + "B";
  if (n >= 1e12) return +(n / 1e12).toFixed(1) + "T";
};

console.log(formatCash(1235000));

ใช้ตัวเลขลบ

let format;
const number = -1235000;

if (number < 0) {
  format = '-' + formatCash(-1 * number);
} else {
  format = formatCash(number);
}

1
@Jan - อัปเดตโพสต์ของฉันด้วยตัวอย่าง แต่รู้สึกว่ามันง่ายพอที่จะคำนวณรูปแบบเชิงลบโดยใช้'-' + formatCash(-1 * number)
tfmontague

16

ES2020 เพิ่มการสนับสนุนสำหรับสิ่งนี้ในIntl.NumberFormatการใช้สัญลักษณ์ดังนี้:

console.log(Intl.NumberFormat('en-US', { notation: "compact" , compactDisplay: "short" }).format(987654321));

NumberFormat รายละเอียด:

โปรดทราบว่าในขณะนี้เบราว์เซอร์บางรุ่นรองรับ ES2020 ดังนั้นคุณอาจต้องใช้ Polyfill นี้: https://formatjs.io/docs/polyfills/intl-numberformat


แพ็คเกจนั้นเลิกใช้แล้วดังนั้นโปรดใช้ลิงก์นี้: npmjs.com/package/@formatjs/intl-numberformat
Ammad Khalid

2
หมายเหตุ: Chrome รองรับnotationและcompactDisplayแต่ FireFox 77 และ Safari 13.1 ยังไม่รองรับดังนั้นคุณอาจต้องใช้ polyfill
Josh Unger

ว้าว Firefox เพิ่งเพิ่มการสนับสนุนสำหรับสิ่งนี้ในข้อ 78 ดูเหมือนว่า แน่นอน 2+ ปีจากนี้ความคิดเห็นนี้จะดูโง่ : P (มันตลกสำหรับฉันเพราะรหัสทำงานสำหรับฉัน แต่มันแปลงไม่ถูกต้องดังนั้นฉันจะต้องทำการอัปเดต)
Andrew

15

ให้เครดิตกับ Waylon Flinn ถ้าคุณชอบสิ่งนี้

สิ่งนี้ได้รับการปรับปรุงจากวิธีการที่สง่างามยิ่งขึ้นของเขาในการจัดการกับจำนวนลบและตัวอักษร ".0"

ลูปที่น้อยลงและกรณี "ถ้า" คุณมี IMO ที่ดีกว่า

function abbreviateNumber(number) {
    var SI_POSTFIXES = ["", "k", "M", "G", "T", "P", "E"];
    var tier = Math.log10(Math.abs(number)) / 3 | 0;
    if(tier == 0) return number;
    var postfix = SI_POSTFIXES[tier];
    var scale = Math.pow(10, tier * 3);
    var scaled = number / scale;
    var formatted = scaled.toFixed(1) + '';
    if (/\.0$/.test(formatted))
      formatted = formatted.substr(0, formatted.length - 2);
    return formatted + postfix;
}

jsFiddle พร้อมกรณีทดสอบ -> https://jsfiddle.net/xyug4nvz/7/


1
ยังคงมีข้อผิดพลาดที่น่ารำคาญ: แทนabbreviateNumber(999999) == '1000k' '1M'นี่เป็นเพราะมันtoFixed()ปัดเศษตัวเลขด้วย ไม่แน่ใจว่าจะแก้ไขอย่างไร: /
Vitor Baptista

@VitorBaptista หากtoFixed()รอบจำนวนต่อไปคุณอาจรวมทั้งรอบจำนวนก่อนที่จะส่งไปabbreviateNumber()เพื่อให้มันกลับแทน1M 1000kไม่ใช่วิธีแก้ปัญหา แต่เป็นวิธีแก้ปัญหา
forsureitsme

2
หากคุณไม่ต้องการปัดเศษคุณสามารถทำสิ่งนี้ได้หลังจากขั้นตอนการปรับขนาด:const floored = Math.floor(scaled * 10) / 10;
tybro0103

11

มันค่อนข้างสง่างาม

function formatToUnits(number, precision) {
  const abbrev = ['', 'k', 'm', 'b', 't'];
  const unrangifiedOrder = Math.floor(Math.log10(Math.abs(number)) / 3)
  const order = Math.max(0, Math.min(unrangifiedOrder, abbrev.length -1 ))
  const suffix = abbrev[order];

  return (number / Math.pow(10, order * 3)).toFixed(precision) + suffix;
}

formatToUnits(12345, 2)
==> "12.35k"
formatToUnits(0, 3)
==> "0.000"


3

ปรับปรุงคำตอบของ @ Yash เพิ่มเติมด้วยการสนับสนุนจำนวนลบ:

function nFormatter(num) {
    isNegative = false
    if (num < 0) {
        isNegative = true
    }
    num = Math.abs(num)
    if (num >= 1000000000) {
        formattedNumber = (num / 1000000000).toFixed(1).replace(/\.0$/, '') + 'G';
    } else if (num >= 1000000) {
        formattedNumber =  (num / 1000000).toFixed(1).replace(/\.0$/, '') + 'M';
    } else  if (num >= 1000) {
        formattedNumber =  (num / 1000).toFixed(1).replace(/\.0$/, '') + 'K';
    } else {
        formattedNumber = num;
    }   
    if(isNegative) { formattedNumber = '-' + formattedNumber }
    return formattedNumber;
}

nFormatter(-120000)
"-120K"
nFormatter(120000)
"120K"

3

โพสต์นี้ค่อนข้างเก่า แต่ฉันก็ไปถึงโพสต์นี้เพื่อค้นหาบางสิ่งบางอย่าง ดังนั้นเพื่อเพิ่มอินพุตของฉันตัวเลข js เป็นโซลูชันครบวงจรวันนี้ มันให้วิธีการจำนวนมากเพื่อช่วยในการจัดรูปแบบตัวเลข

http://numeraljs.com/


1
ตัวเลขจะไม่ถูกรักษาอีกต่อไป ส้อมใช้งานมากที่สุดน่าจะเป็นnumbro แต่ทั้งคู่ก็ไม่สนับสนุนสัญกรณ์ SI / เมตริก
Vincent de Lagabbe

3

วิธีการสั้นและทั่วไป

คุณสามารถทำให้COUNT_FORMATSวัตถุปรับแต่งยาวหรือสั้นตามที่คุณต้องการทั้งนี้ขึ้นอยู่กับช่วงของค่าที่คุณทดสอบ

// Configuration    
const COUNT_FORMATS =
[
  { // 0 - 999
    letter: '',
    limit: 1e3
  },
  { // 1,000 - 999,999
    letter: 'K',
    limit: 1e6
  },
  { // 1,000,000 - 999,999,999
    letter: 'M',
    limit: 1e9
  },
  { // 1,000,000,000 - 999,999,999,999
    letter: 'B',
    limit: 1e12
  },
  { // 1,000,000,000,000 - 999,999,999,999,999
    letter: 'T',
    limit: 1e15
  }
];
    
// Format Method:
function formatCount(value)
{
  const format = COUNT_FORMATS.find(format => (value < format.limit));

  value = (1000 * value / format.limit);
  value = Math.round(value * 10) / 10; // keep one decimal number, only if needed

  return (value + format.letter);
}

// Test:
const test = [274, 1683, 56512, 523491, 9523489, 5729532709, 9421032489032];
test.forEach(value => console.log(`${ value } >>> ${ formatCount(value) }`));


1

เพิ่มคำตอบด้านบนนี้จะให้ 1k สำหรับ 1,000 แทน 1.0k

function kFormatter(num) {
    return num > 999 ? num % 1000 === 0 ? (num/1000).toFixed(0) + 'k' : (num/1000).toFixed(1) + 'k' : num
}

1

คำตอบของ Waylon Flinn รุ่นที่แก้ไขแล้วพร้อมการสนับสนุนเลขชี้กำลังเป็นค่าลบ:

function metric(number) {

  const SI_SYMBOL = [
    ["", "k", "M", "G", "T", "P", "E"], // +
    ["", "m", "μ", "n", "p", "f", "a"] // -
  ];

  const tier = Math.floor(Math.log10(Math.abs(number)) / 3) | 0;

  const n = tier < 0 ? 1 : 0;

  const t = Math.abs(tier);

  const scale = Math.pow(10, tier * 3);

  return {
    number: number,
    symbol: SI_SYMBOL[n][t],
    scale: scale,
    scaled: number / scale
  }
}

function metric_suffix(number, precision) {
  const m = metric(number);
  return (typeof precision === 'number' ? m.scaled.toFixed(precision) : m.scaled) + m.symbol;
}

for (var i = 1e-6, s = 1; i < 1e7; i *= 10, s *= -1) {
  // toggles sign in each iteration
  console.log(metric_suffix(s * (i + i / 5), 1));
}

console.log(metric(0));

ผลลัพธ์ที่คาดหวัง:

   1.2μ
 -12.0μ
 120.0μ
  -1.2m
  12.0m
-120.0m
   1.2
 -12.0
 120.0
  -1.2k
  12.0k
-120.0k
   1.2M
{ number: 0, symbol: '', scale: 1, scaled: 0 }

1
  • รองรับจำนวนลบ
  • กำลังตรวจสอบ !Number.isFinite
  • เปลี่ยน' K M G T P E Z Y'เป็น' K M'หากคุณต้องการหน่วยสูงสุดM

โค้ดด้านล่างคือ 1K = 1024 หากคุณต้องการ 1K = 1,000 ให้เปลี่ยน 1024 ทั้งหมดเป็น 1,000


Number.prototype.prefix = function (precision = 2) {

    var units = ' K M G T P E Z Y'.split(' ');

    if (this < 0) {
        return '-' + Math.abs(this).prefix(precision);
    }

    if (this < 1) {
        return this + units[0];
    }

    var power = Math.min(
        Math.floor(Math.log(this) / Math.log(1024)),
        units.length - 1
    );

    return (this / Math.pow(1024, power)).toFixed(precision) + units[power];
}

console.log('10240 = ' + (10240).prefix()) // 10.00K
console.log('1234000 = ' + (1234000).prefix(1)) // 1.2M
console.log('10000 = ' + (-10000).prefix()) // -9.77K


(11000) .prefix () เท่ากับ 10.74K ไม่แม่นยำมากควรบอก 11.00K
bmaggi

1
@bmaggi เพียงเปลี่ยน 1024 เป็น 1,000
Steely Wing

1

ปรับปรุงคำตอบของ @ tfmontague ให้มากขึ้นเพื่อจัดรูปแบบทศนิยม 33.0k ถึง 33k

largeNumberFormatter(value: number): any {
   let result: any = value;

   if (value >= 1e3 && value < 1e6) { result = (value / 1e3).toFixed(1).replace(/\.0$/, '') + 'K'; }
   if (value >= 1e6 && value < 1e9) { result = (value / 1e6).toFixed(1).replace(/\.0$/, '') + 'M'; }
   if (value >= 1e9) { result = (value / 1e9).toFixed(1).replace(/\.0$/, '') + 'T'; }

   return result;
}

1

ไม่พอใจโซลูชันที่โพสต์ดังนั้นนี่คือเวอร์ชันของฉัน:

  1. รองรับตัวเลขบวกและลบ
  2. รองรับเลขชี้กำลังเป็นค่าลบ
  3. ปัดเศษเป็นเลขชี้กำลังถัดไปหากเป็นไปได้
  4. ทำการตรวจสอบขอบเขต (ไม่ผิดพลาดสำหรับจำนวนมาก / เล็ก)
  5. ลอกค่าศูนย์ / ช่องว่างต่อท้าย
  6. รองรับพารามิเตอร์ที่มีความแม่นยำ

    function abbreviateNumber(number,digits=2) {
      var expK = Math.floor(Math.log10(Math.abs(number)) / 3);
      var scaled = number / Math.pow(1000, expK);
    
      if(Math.abs(scaled.toFixed(digits))>=1000) { // Check for rounding to next exponent
        scaled /= 1000;
        expK += 1;
      }
    
      var SI_SYMBOLS = "apμm kMGTPE";
      var BASE0_OFFSET = SI_SYMBOLS.indexOf(' ');
    
      if (expK + BASE0_OFFSET>=SI_SYMBOLS.length) { // Bound check
        expK = SI_SYMBOLS.length-1 - BASE0_OFFSET;
        scaled = number / Math.pow(1000, expK);
      }
      else if (expK + BASE0_OFFSET < 0) return 0;  // Too small
    
      return scaled.toFixed(digits).replace(/(\.|(\..*?))0+$/,'$2') + SI_SYMBOLS[expK+BASE0_OFFSET].trim();
    }
    
    //////////////////
    
    const tests = [
      [0.0000000000001,2],
      [0.00000000001,2],
      [0.000000001,2],
      [0.000001,2],
      [0.001,2],
      [0.0016,2],
      [-0.0016,2],
      [0.01,2],
      [1,2],
      [999.99,2],
      [999.99,1],
      [-999.99,1],
      [999999,2],
      [999999999999,2],
      [999999999999999999,2],
      [99999999999999999999,2],
    ];
    
    for (var i = 0; i < tests.length; i++) {
      console.log(abbreviateNumber(tests[i][0], tests[i][1]) );
    }



1

ปรับปรุงคำตอบของ Salman ต่อไปเนื่องจากคดีต่างๆเช่น nFormatter (999999,1) ที่ส่งคืน 1,000K

function formatNumberWithMetricPrefix(num, digits = 1) {
  const si = [
    {value: 1e18, symbol: 'E'},
    {value: 1e15, symbol: 'P'},
    {value: 1e12, symbol: 'T'},
    {value: 1e9, symbol: 'G'},
    {value: 1e6, symbol: 'M'},
    {value: 1e3, symbol: 'k'},
    {value: 0, symbol: ''},
  ];
  const rx = /\.0+$|(\.[0-9]*[1-9])0+$/;
  function divideNum(divider) {
    return (num / (divider || 1)).toFixed(digits);
  }

  let i = si.findIndex(({value}) => num >= value);
  if (+divideNum(si[i].value) >= 1e3 && si[i - 1]) {
    i -= 1;
  }
  const {value, symbol} = si[i];
  return divideNum(value).replace(rx, '$1') + symbol;
}

1

วิธีที่ง่ายที่สุดและง่ายที่สุดคือ

new Intl.NumberFormat('en-IN', { 
    notation: "compact",
    compactDisplay: "short",
    style: 'currency',
    currency: 'INR'
}).format(1000).replace("T", "K")

ใช้ได้กับทุกหมายเลข รวมถึงL Crอื่น ๆ


1

โดยการกำจัดลูปในโซลูชัน @ martin-sznapka คุณจะลดเวลาดำเนินการลง 40%

function formatNum(num,digits) {
    let units = ['k', 'M', 'G', 'T', 'P', 'E', 'Z', 'Y'];
    let floor = Math.floor(Math.abs(num).toString().length / 3);
    let value=+(num / Math.pow(1000, floor))
    return value.toFixed(value > 1?digits:2) + units[floor - 1];

}

การทดสอบความเร็ว (ตัวอย่างสุ่ม 20,000 ครั้ง) สำหรับการแก้ปัญหาที่แตกต่างจากเธรดนี้

Execution time: formatNum          418  ms
Execution time: kFormatter         438  ms it just use "k" no "M".."T" 
Execution time: beautify           593  ms doesnt support - negatives
Execution time: shortenLargeNumber 682  ms    
Execution time: Intl.NumberFormat  13197ms 

0
/*including negative values*/    
function nFormatter(num) {
      let neg = false;
       if(num < 0){
         num = num * -1;
         neg = true;
       }
       if (num >= 1000000000) {
         if(neg){
           return -1 * (num / 1000000000).toFixed(1).replace(/\.0$/, '') + 'G';  
         }
         return (num / 1000000000).toFixed(1).replace(/\.0$/, '') + 'G';
       }
       if (num >= 1000000) {
         if(neg){
           return -1 * (num / 1000000).toFixed(1).replace(/\.0$/, '') + 'M';  
         }
         return (num / 1000000).toFixed(1).replace(/\.0$/, '') + 'M';
       }
       if (num >= 1000) {
         if(neg){
           return -1 * (num / 1000).toFixed(1).replace(/\.0$/, '') + 'K';  
         }
         return (num / 1000).toFixed(1).replace(/\.0$/, '') + 'K';
       }
       return num;
    }

กรุณาเพิ่มคำอธิบายวิธีการแก้ปัญหาของคุณ
Harun Diluka Heshan

0

ฟังก์ชันนี้สามารถแปลงตัวเลขขนาดใหญ่ (ทั้งบวกและลบ) เป็นรูปแบบที่เป็นมิตรกับผู้อ่านโดยไม่สูญเสียความแม่นยำ:

function abbrNum(n) {
    if (!n || (n && typeof n !== 'number')) {
      return '';
    }

    const ranges = [
      { divider: 1e12 , suffix: 't' },
      { divider: 1e9 , suffix: 'b' },
      { divider: 1e6 , suffix: 'm' },
      { divider: 1e3 , suffix: 'k' }
    ];
    const range = ranges.find(r => Math.abs(n) >= r.divider);
    if (range) {
      return (n / range.divider).toString() + range.suffix;
    }
    return n.toString();
}

/* test cases */
let testAry = [99, 1200, -150000, 9000000];
let resultAry = testAry.map(abbrNum);
console.log("result array: " + resultAry);


0

ฉันใช้ฟังก์ชั่นนี้ การทำงานสำหรับทั้งสองและphpjavascript

    /**
     * @param $n
     * @return string
     * Use to convert large positive numbers in to short form like 1K+, 100K+, 199K+, 1M+, 10M+, 1B+ etc
     */
 function num_format($n) {
        $n_format = null;
        $suffix = null;
        if ($n > 0 && $n < 1000) {
           $n_format = Math.floor($n);   
            $suffix = '';
        }
        else if ($n == 1000) {
            $n_format = Math.floor($n / 1000);   //For PHP only use floor function insted of Math.floor()
            $suffix = 'K';
        }
        else if ($n > 1000 && $n < 1000000) {
            $n_format = Math.floor($n / 1000);
            $suffix = 'K+';
        } else if ($n == 1000000) {
            $n_format = Math.floor($n / 1000000);
            $suffix = 'M';
        } else if ($n > 1000000 && $n < 1000000000) {
            $n_format = Math.floor($n / 1000000);
            $suffix = 'M+';
        } else if ($n == 1000000000) {
            $n_format = Math.floor($n / 1000000000);
            $suffix = 'B';
        } else if ($n > 1000000000 && $n < 1000000000000) {
            $n_format = Math.floor($n / 1000000000);
            $suffix = 'B+';
        } else if ($n == 1000000000000) {
            $n_format = Math.floor($n / 1000000000000);
            $suffix = 'T';
        } else if ($n >= 1000000000000) {
            $n_format = Math.floor($n / 1000000000000);
            $suffix = 'T+';
        }


       /***** For PHP  ******/
       //  return !empty($n_format . $suffix) ? $n_format . $suffix : 0;

       /***** For Javascript ******/
        return ($n_format + $suffix).length > 0 ? $n_format + $suffix : 0;
    }

0

ฉันตัดสินใจขยายคำตอบของ @ Novellizator ที่นี่เพื่อตอบสนองความต้องการของฉัน ฉันต้องการฟังก์ชั่นที่ยืดหยุ่นเพื่อจัดการกับความต้องการในการจัดรูปแบบส่วนใหญ่ของฉันโดยไม่ต้องใช้ไลบรารีภายนอก

คุณสมบัติ

  • ตัวเลือกในการใช้คำต่อท้ายคำสั่ง (k, M, ฯลฯ )
    • ตัวเลือกเพื่อระบุรายการคำต่อท้ายคำสั่งที่กำหนดเองที่จะใช้
    • ตัวเลือกเพื่อ จำกัด ลำดับขั้นต่ำและสูงสุด
  • ควบคุมจำนวนตำแหน่งทศนิยม
  • เครื่องหมายจุลภาคคั่นคำสั่งอัตโนมัติ
  • การเลือกรูปแบบเปอร์เซ็นต์หรือดอลลาร์
  • ควบคุมสิ่งที่จะส่งคืนในกรณีของอินพุตที่ไม่ใช่ตัวเลข
  • ทำงานกับจำนวนลบและไม่มีที่สิ้นสุด

ตัวอย่าง

let x = 1234567.8;
formatNumber(x);  // '1,234,568'
formatNumber(x, {useOrderSuffix: true});  // '1M'
formatNumber(x, {useOrderSuffix: true, decimals: 3, maxOrder: 1});  // '1,234.568k'
formatNumber(x, {decimals: 2, style: '$'});  // '$1,234,567.80'

x = 10.615;
formatNumber(x, {style: '%'});  // '1,062%'
formatNumber(x, {useOrderSuffix: true, decimals: 1, style: '%'});  // '1.1k%'
formatNumber(x, {useOrderSuffix: true, decimals: 5, style: '%', minOrder: 2});  // '0.00106M%'

formatNumber(-Infinity);  // '-∞'
formatNumber(NaN);  // ''
formatNumber(NaN, {valueIfNaN: NaN});  // NaN

ฟังก์ชัน

/*
 * Return the given number as a formatted string.  The default format is a plain
 * integer with thousands-separator commas.  The optional parameters facilitate
 * other formats:
 *   - decimals = the number of decimals places to round to and show
 *   - valueIfNaN = the value to show for non-numeric input
 *   - style
 *     - '%': multiplies by 100 and appends a percent symbol
 *     - '$': prepends a dollar sign
 *   - useOrderSuffix = whether to use suffixes like k for 1,000, etc.
 *   - orderSuffixes = the list of suffixes to use
 *   - minOrder and maxOrder allow the order to be constrained.  Examples:
 *     - minOrder = 1 means the k suffix should be used for numbers < 1,000
 *     - maxOrder = 1 means the k suffix should be used for numbers >= 1,000,000
 */
function formatNumber(number, {
    decimals = 0,
    valueIfNaN = '',
    style = '',
    useOrderSuffix = false,
    orderSuffixes = ['', 'k', 'M', 'B', 'T'],
    minOrder = 0,
    maxOrder = Infinity
  } = {}) {

  let x = parseFloat(number);

  if (isNaN(x))
    return valueIfNaN;

  if (style === '%')
    x *= 100.0;

  let order;
  if (!isFinite(x) || !useOrderSuffix)
    order = 0;
  else if (minOrder === maxOrder)
    order = minOrder;
  else {
    const unboundedOrder = Math.floor(Math.log10(Math.abs(x)) / 3);
    order = Math.max(
      0,
      minOrder,
      Math.min(unboundedOrder, maxOrder, orderSuffixes.length - 1)
    );
  }

  const orderSuffix = orderSuffixes[order];
  if (order !== 0)
    x /= Math.pow(10, order * 3);

  return (style === '$' ? '$' : '') +
    x.toLocaleString(
      'en-US',
      {
        style: 'decimal',
        minimumFractionDigits: decimals,
        maximumFractionDigits: decimals
      }
    ) +
    orderSuffix +
    (style === '%' ? '%' : '');
}

0

ว้าวมีคำตอบมากมายอยู่ตรงนี้ ฉันคิดว่าฉันจะให้วิธีการที่ฉันแก้ไขมันเพราะมันเป็นวิธีที่ง่ายที่สุดในการอ่านจัดการกับจำนวนลบและออกไปไกลในช่วงเลขกิโลสำหรับ JavaScript นอกจากนี้ยังเป็นการง่ายที่จะเปลี่ยนสิ่งที่คุณต้องการหรือขยายออกไปได้อีก

const symbols = [
  { value: 1, symbol: '' },
  { value: 1e3, symbol: 'k' },
  { value: 1e6, symbol: 'M' },
  { value: 1e9, symbol: 'G' },
  { value: 1e12, symbol: 'T' },
  { value: 1e15, symbol: 'P' },
  { value: 1e18, symbol: 'E' }
];

function numberFormatter(num, digits) {
  const numToCheck = Math.abs(num);
  for (let i = symbols.length - 1; i >= 0; i--) {
    if (numToCheck >= symbols[i].value) {
      const newNumber = (num / symbols[i].value).toFixed(digits);
      return `${newNumber}${symbols[i].symbol}`;
    }
  }
  return '0';
}

const tests = [
  { num: 1234, digits: 1 },
  { num: 100000000, digits: 1 },
  { num: 299792458, digits: 1 },
  { num: 759878, digits: 1 },
  { num: -759878, digits: 0 },
  { num: 123, digits: 1 },
  { num: 123.456, digits: 1 },
  { num: -123.456, digits: 2 },
  { num: 123.456, digits: 4 }
];
for (let i = 0; i < tests.length; i++) {
  console.log(`numberFormatter(${tests[i].num}, ${tests[i].digits})=${numberFormatter(tests[i].num, tests[i].digits)}`);
}


0

ทางเลือกที่สั้นกว่า:

function nFormatter(num) {
    const format = [
      { value: 1e18, symbol: 'E' },
      { value: 1e15, symbol: 'P' },
      { value: 1e12, symbol: 'T' },
      { value: 1e9, symbol: 'G' },
      { value: 1e6, symbol: 'M' },
      { value: 1e3, symbol: 'k' },
      { value: 1, symbol: '' },
    ];
    const formatIndex = format.findIndex((data) => num >= data.value);
    console.log(formatIndex)
    return (num / format[formatIndex === -1? 6: formatIndex].value).toFixed(2) + format[formatIndex === -1?6: formatIndex].symbol;
  }
  

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.