Charles Iliya Krempeaux 6aa86c6f80 | ||
---|---|---|
en | ||
LICENSE | ||
README.md |
README.md
go-ord
Package ord provides tools for turning numbers into their human-friendly ordinal representation.
For example:
Number | (English) Ordinal |
---|---|
1 | 1st |
2 | 2nd |
3 | 3rd |
4 | 4th |
5 | 5th |
... | ... |
20 | 20th |
21 | 21st |
22 | 22nd |
23 | 23rd |
24 | 24th |
25 | 25th |
26 | 26th |
27 | 27th |
... | ... |
Documention
Online documentation, which includes examples, can be found at: http://godoc.org/github.com/reiver/go-ord
Example:
import "github.com/reiver/go-ord/en"
// ...
var n int64 = 123
fmt.Printf("You are the %s person in line.", orden.FormatInt64(n))
// Output:
// You are the 123rd person in line.