seaweedfs/go/util/parse.go

17 lines
249 B
Go
Raw Normal View History

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 {
count, parseError := strconv.ParseUint(text, 10, 64)
if parseError != nil {
if len(text) > 0 {
return 0
}
return defaultValue
}
return int(count)
2012-09-03 22:41:24 +00:00
}