Skip to content

Instantly share code, notes, and snippets.

@ArtemAvramenko
Created July 7, 2023 13:47
Show Gist options
  • Save ArtemAvramenko/3d7bdfc3ae7257738896c6c71ebb5ea2 to your computer and use it in GitHub Desktop.
Save ArtemAvramenko/3d7bdfc3ae7257738896c6c71ebb5ea2 to your computer and use it in GitHub Desktop.
var amount = 900m;
var currency = "μBTC";
// https://en.wikipedia.org/wiki/Micro-
int prefixIndex = currency.Length > 3 ? "mμnpf".IndexOf(currency[0]) : -1;
if (prefixIndex >= 0)
{
currency = currency[1..];
amount /= (decimal)Math.Pow(1000, prefixIndex + 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment