seaweedfs/weed-fs/src/pkg/util/parse.go

17 lines
255 B
Go
Raw Normal View History

2012-09-04 06:41:24 +08:00
package util
import (
"strconv"
2012-09-04 06:41:24 +08: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-04 06:41:24 +08:00
}