drone-test/utils/conver_utils.go

10 lines
129 B
Go
Raw Normal View History

2022-06-15 10:31:40 +08:00
package utils
import "strconv"
// StrToInt string转int
func StrToInt(str string) int {
i, _ := strconv.Atoi(str)
return i
}