Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

money notation #95

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions finance.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
package humanize

import (
"fmt"
)

var (
FinanceSign = "$"
)

func Finance(f float64) string {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wonder if it would make sense to take some optional Options which could set things like which $ sign to use and if it should be prepended or appended (or omitted entirely) and could control the # of decimal points.

So you could do things like:

  1. 1.83M USD
  2. €2.34T
  3. 48.9945

etc. Could also look at the various locales used with https://www.php.net/manual/en/function.money-format.php

Copy link
Author

@lfaoro lfaoro Sep 27, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Very good idea, I'll add the Options pattern, the options will be:

  • WithSign(s string) // can pass "" to remove the default ($) sign
  • WithAppend() // if no append, Prepend is default -- otherwise could add both options
  • WithPrecision(n int) // defaults to .2

WDYT?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

switch n := f; {
case n >= 1_000_000_000_000_000:
s := fmt.Sprintf("%.f", f)
s = insertAt(1, '.', []rune(s[:4]))
return fmt.Sprintf("%s%sQ", FinanceSign, s)

case n >= 1_000_000_000_000:
s := fmt.Sprintf("%.f", f)
s = insertAt(1, '.', []rune(s[:4]))
return fmt.Sprintf("%s%sT", FinanceSign, s)

case n >= 1_000_000_000:
s := fmt.Sprintf("%.f", f)
s = insertAt(1, '.', []rune(s[:4]))
return fmt.Sprintf("%s%sB", FinanceSign, s)

case n >= 1_000_000:
s := fmt.Sprintf("%.f", f)
s = insertAt(1, '.', []rune(s[:4]))
return fmt.Sprintf("%s%sM", FinanceSign, s)

case n >= 1_000:
s := fmt.Sprintf("%.f", f)
s = insertAt(1, '.', []rune(s[:4]))
return fmt.Sprintf("%s%sK", FinanceSign, s)

case n < 1_000:
return fmt.Sprintf("%s%.f", FinanceSign, f)

default:
return "NaN"
}
}

func insertAt(index int, elem rune, slice []rune) string {
copy(slice[index+1:], slice[index:])
slice[index] = elem
return string(slice)
}
30 changes: 30 additions & 0 deletions finance_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
package humanize

import (
"math"
"testing"
)

func TestFinance(t *testing.T) {
tests := []struct {
name string
arg float64
want string
}{
{"Quadrillions", 2_475_260_494_216_000, "$2.47Q"},
{"Trillions", 2_475_260_494_216, "$2.47T"},
{"Billions", 2_475_260_494, "$2.47B"},
{"Millions", 2_475_260, "$2.47M"},
{"Thousands", 2_475, "$2.47K"},
{"Hundreds", 247, "$247"},
{"Tens", 24, "$24"},
{"NaN", math.NaN(), "NaN"},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := Finance(tt.arg); got != tt.want {
t.Errorf("Finance() = %v, want %v", got, tt.want)
}
})
}
}