2012-09-03 22:41:24 +00:00
|
|
|
package util
|
|
|
|
|
|
|
|
import (
|
2013-01-17 08:56:56 +00:00
|
|
|
"strconv"
|
2012-09-03 22:41:24 +00:00
|
|
|
)
|
|
|
|
|
2013-01-17 08:56:56 +00:00
|
|
|
func ParseInt(text string, defaultValue int) int {
|
2015-05-26 06:51:12 +00:00
|
|
|
count, parseError := strconv.ParseInt(text, 10, 64)
|
2013-01-17 08:56:56 +00:00
|
|
|
if parseError != nil {
|
|
|
|
if len(text) > 0 {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
return defaultValue
|
|
|
|
}
|
|
|
|
return int(count)
|
2012-09-03 22:41:24 +00:00
|
|
|
}
|
2015-05-26 06:51:12 +00:00
|
|
|
func ParseUint64(text string, defaultValue uint64) uint64 {
|
|
|
|
count, parseError := strconv.ParseUint(text, 10, 64)
|
|
|
|
if parseError != nil {
|
|
|
|
if len(text) > 0 {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
return defaultValue
|
|
|
|
}
|
|
|
|
return count
|
|
|
|
}
|