Files
seaweedFS/weed-fs/src/pkg/util/parse.go
2012-09-03 15:41:24 -07:00

17 lines
255 B
Go

package util
import (
"strconv"
)
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)
}