Skip to content

Instantly share code, notes, and snippets.

@jonrysimbolon
Created February 17, 2022 08:13
Show Gist options
  • Save jonrysimbolon/012228823e0c8f1f776370aeacabcd93 to your computer and use it in GitHub Desktop.
Save jonrysimbolon/012228823e0c8f1f776370aeacabcd93 to your computer and use it in GitHub Desktop.
format rupiah
private fun formatRupiah(number: Double): String {
val localeID = Locale("in", "ID")
val formatRupiah = NumberFormat.getCurrencyInstance(localeID)
return formatRupiah.format(number)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment