2023-06-02 11:24:58 +00:00
|
|
|
package format
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"strconv"
|
|
|
|
)
|
|
|
|
|
2023-09-15 06:52:36 +00:00
|
|
|
// 厘转美元
|
2023-09-21 03:14:14 +00:00
|
|
|
func CentitoDollar(price int64, remainFloatPoint ...uint) float64 {
|
|
|
|
s := "%.3f"
|
|
|
|
if len(remainFloatPoint) > 0 {
|
|
|
|
s = fmt.Sprintf("%%.%df", remainFloatPoint[0])
|
|
|
|
}
|
|
|
|
fmt.Println(s)
|
|
|
|
str := fmt.Sprintf(s, float64(price)/float64(1000))
|
2023-06-02 11:24:58 +00:00
|
|
|
dollar, _ := strconv.ParseFloat(str, 64)
|
|
|
|
return dollar
|
|
|
|
}
|