Skip to content

Instantly share code, notes, and snippets.

@agiri23
Last active December 23, 2021 20:17
Show Gist options
  • Save agiri23/bf40cb993e8c009fb4f5624d1e9b4f4b to your computer and use it in GitHub Desktop.
Save agiri23/bf40cb993e8c009fb4f5624d1e9b4f4b to your computer and use it in GitHub Desktop.
compact number format short
NumberFormat numberFormatShort = NumberFormat
.getCompactNumberInstance(Locale.forLanguageTag("NL"), NumberFormat.Style.SHORT);
System.out.println(numberFormatShort.format(2000));
System.out.println(numberFormatShort.format(20000));
System.out.println(numberFormatShort.format(200000));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment