Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to convert a number into a string representation with a format similar to Stack Overflow reputation display.

e.g.

  • 999 == '999'
  • 1000 == '1,000'
  • 9999 == '9,999'
  • 10000 == '10k'
  • 10100 == '10.1k'
share|improve this question
Possible dupe: stackoverflow.com/questions/2134161/… – Sani Huttunen Jul 5 '10 at 8:00
@sani JavaScript != C#. last time I checked, anyway. – Sky Sanders Jul 5 '10 at 8:05
2  
If you have international users please remember that the comma as thousand separator and dot as decimal one isn't valid everywhere. Same for the letters to represent thousands, millions, ... Microsoft made a jQuery plugin with some support for that but i don't know if it's complete ( weblogs.asp.net/scottgu/archive/2010/06/10/… ) – VirtualBlackFox Jul 5 '10 at 9:07

4 Answers

up vote 10 down vote accepted

Another approach that produces exactly the desired output:

function getRepString (rep) {
  rep = rep+''; // coerce to string
  if (rep < 1000) {
    return rep; // return the same number
  } else if (rep < 10000) { // place a comma between
    return rep.charAt(0) + ',' + rep.substring(1);
  } else { // divide and format
    return (rep/1000).toFixed(rep % 1000 != 0)+'k';
  }
}

Check the output results here.

share|improve this answer
actually, the toFixed was how i initially had implemented the >=10k but the replace made me feel dirty ;-) but the <10k is actually way too obvious for me to have come up with. thanks for that. you get the check, but i get to steal the <10k. – Sky Sanders Jul 5 '10 at 8:27
@code: Yeah, I felt dirty also, replace removed. – CMS Jul 5 '10 at 8:56

UPDATE: CMS got the check and provides a superior answer. Send any more votes his way.

// formats a number similar to the way stack exchange sites 
// format reputation. e.g.
// for numbers< 10000 the output is '9,999'
// for numbers > 10000 the output is '10k' with one decimal place when needed
function getRepString(rep)
{
    var repString;

    if (rep < 1000)
    {
        repString = rep;
    }
    else if (rep < 10000)
    {
        // removed my rube goldberg contraption and lifted
        // CMS version of this segment
        repString = rep.charAt(0) + ',' + rep.substring(1);
    }
    else
    {
        repString = (Math.round((rep / 1000) * 10) / 10) + "k"
    }

    return repString.toString();
}

Output:

  • getRepString(999) == '999'
  • getRepString(1000) == '1,000'
  • getRepString(9999) == '9,999'
  • getRepString(10000) == '10k'
  • getRepString(10100) == '10.1k'
share|improve this answer
3  
I'm a little puzzled. You're asking a question and the next minute you're the one answering it? – the_void Jul 5 '10 at 8:13
1  
@the it's called a 'how-to' post. say you just spent some time figuring out how to do something that you couldn't find on the internet. would it have saved you time if someone else had already posted some tested code? do you like to have your time saved? ;-) I do. I didn't actually search to complete this task, but someone mentioned that perhaps it would go over well on SO. looks like they were right. cheers. p.s. it is done all the time and is accepted practice. not usually by me, though. – Sky Sanders Jul 5 '10 at 8:17
3  
If you say this is a 'how-to' post, then it should be community wiki - otherwise it seems like a rep-farm to me. – Jeriko Jul 5 '10 at 8:32
I guess that for this sort of thing you could have used the community wiki feature ;) – the_void Jul 5 '10 at 8:59

Here is a function in PHP which is part of iZend - http://www.izend.org/en/manual/library/countformat:

function count_format($n, $point='.', $sep=',') {
    if ($n < 0) {
        return 0;
    }

    if ($n < 10000) {
        return number_format($n, 0, $point, $sep);
    }

    $d = $n < 1000000 ? 1000 : 1000000;

    $f = round($n / $d, 1);

    return number_format($f, $f - intval($f) ? 1 : 0, $point, $sep) . ($d == 1000 ? 'k' : 'M');
}
share|improve this answer

divide by 1000 then if result is greater than 1 round the number and concantenate a "k" on the end.

If the result is less than 1 just output the actual result!

share|improve this answer
if the number is less than 10000, it should be formatted with a separator, if greater, it should be formatted with a kilo indicator and 1 decimal place, if necessary. you are missing some of the details, liam. – Sky Sanders Jul 5 '10 at 9:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.