golang 判断字符串是否为空
在 Golang 中,判断字符串是否为空可以使用 len 函数来检测字符串的长度是否为 0。例如:
s := ""
if len(s) == 0 {
// 字符串为空
}
另外,还可以使用 strings 包中的函数来判断字符串是否为空。例如:
import "strings"
s := ""
if strings.TrimSpace(s) == "" {
// 字符串为空
}
这里使用了 strings.TrimSpace 函数来去除字符串两端的空格,然后再判断字符串是否为空。
原文地址: https://www.cveoy.top/t/topic/zxY 著作权归作者所有。请勿转载和采集!