2010-04-21 25 views
20

Al igual que la reputación Stackoverlow redondeo, estoy esperando a hacer lo mismo con la moneda

$ 1.000 => 1k

$ 1.000.000 de => 1m

¿Existe una biblioteca a cabo Ya hay eso que hace esto? (Preferiblemente en jQuery)

+1

Esto actualmente no califica como una pregunta aceptable de golf de código. vea http://meta.stackexchange.com/questions/24258. Necesita unos cuantos casos de prueba más para convertirlo en wiki de la comunidad y finalmente debe aceptar la respuesta más corta (en tamaño de código). Los campos de golf de un solo idioma son aburridos, también debe abrirlos en otros idiomas –

+0

David creó una versión [code-golf]: http://stackoverflow.com/questions/2692323/code-golf-friendly-number-abbreviator – dmckee

+1

Gracias chicos - como pueden ver, soy nuevo en Stack Overflow. ¡Estoy emocionado de que todos ustedes piensen que este es un problema interesante! – Baloneysammitch

Respuesta

71

Aquí es una función simple de hacerlo:

function abbrNum(number, decPlaces) { 
    // 2 decimal places => 100, 3 => 1000, etc 
    decPlaces = Math.pow(10,decPlaces); 

    // Enumerate number abbreviations 
    var abbrev = [ "k", "m", "b", "t" ]; 

    // Go through the array backwards, so we do the largest first 
    for (var i=abbrev.length-1; i>=0; i--) { 

     // Convert array index to "1000", "1000000", etc 
     var size = Math.pow(10,(i+1)*3); 

     // If the number is bigger or equal do the abbreviation 
     if(size <= number) { 
      // Here, we multiply by decPlaces, round, and then divide by decPlaces. 
      // This gives us nice rounding to a particular decimal place. 
      number = Math.round(number*decPlaces/size)/decPlaces; 

      // Handle special case where we round up to the next abbreviation 
      if((number == 1000) && (i < abbrev.length - 1)) { 
       number = 1; 
       i++; 
      } 

      // Add the letter for the abbreviation 
      number += abbrev[i]; 

      // We are done... stop 
      break; 
     } 
    } 

    return number; 
} 

Salidas:

abbrNum(12 , 1)   => 12 
abbrNum(0 , 2)   => 0 
abbrNum(1234 , 0)  => 1k 
abbrNum(34567 , 2)  => 34.57k 
abbrNum(918395 , 1)  => 918.4k 
abbrNum(2134124 , 2)  => 2.13m 
abbrNum(47475782130 , 2) => 47.48b 

Demostración: http://jsfiddle.net/jtbowden/SbqKL/

+1

esto se siente golfy. ¿Qué tan pequeño podemos obtener esta función? –

+0

lol, mucho más pequeño, estoy seguro. –

+0

FONDO IT. En serio, me encantaría ver eso en un hilo de golf. –

10
var pow=Math.pow, floor=Math.floor, abs=Math.abs, log=Math.log; 

function round(n, precision) { 
    var prec = Math.pow(10, precision); 
    return Math.round(n*prec)/prec; 
} 

function format(n) { 
    var base = floor(log(abs(n))/log(1000)); 
    var suffix = 'kmb'[base-1]; 
    return suffix ? round(n/pow(1000,base),2)+suffix : ''+n; 
} 

Demostración:

> tests = [-1001, -1, 0, 1, 2.5, 999, 1234, 
      1234.5, 1000001, Math.pow(10,9), Math.pow(10,12)] 
> tests.forEach(function(x){ console.log(x,format(x)) }) 

-1001 "-1k" 
-1 "-1" 
0 "0" 
1 "1" 
2.5 "2.5" 
999 "999" 
1234 "1.23k" 
1234.5 "1.23k" 
1000001 "1m" 
1000000000 "1b" 
1000000000000 "1000000000000" 
Cuestiones relacionadas