This language bar is your friend. Select your favorite languages!
Select your favorite languages :
- Or search :
- C
- C#
- D
- Go
- Haskell
- JS
- Java
- Java
- Java
- Java
- Java
- Java
- PHP
- Pascal
- Perl
- Python
- Python
- Python
- Ruby
- Ruby
- Ruby
- Rust
- Scala
setlocale(LC_ALL, "");
printf("%'d\n", 1000);
out.printf("%,d", new BigInteger("1234"));
DecimalFormat f = (DecimalFormat) getNumberInstance();
f.setGroupingSize(3);
String s = f.format(1_000);
NumberFormat f = new DecimalFormat("#,###");
String s = f.format(1_234);
Note, this will truncate any fractional portion—e.g., "1234.5" to "1,234".
out.printf("%,f", new BigDecimal("1234.5"));
sub commify {
local $_ = shift;
1 while s/^([-+]?\d+)(\d{3})/$1,$2/;
return $_;
}
Loop over a string and insert a string every three characters, until you can't.
1000.to_s(:delimited)
requires packages ruby-activesupport, ruby-bigdecimal and ruby-json