我在列表中存储了一组字符串。我遍历列表以与 string 进行比较"[the]"。
当我使用该函数时strings.EqualFold,它会出现此错误:
不能在函数参数中使用 e.Value (type interface {}) 作为类型字符串:需要类型断言
代码如下:
for e := l.Front(); e != nil; e = e.Next() {
if(strings.EqualFold("[the]", e.Value)){
count++
}
}
呼如林
慕标琳琳
相关分类