为了账号安全,请及时绑定邮箱和手机立即绑定

Golang中strings.Contains和strings.ContainsAny的区别

Golang中strings.Contains和strings.ContainsAny的区别

Go
慕森王 2021-10-18 11:14:07
试图构建一个运行http服务器的go程序的静态链接版本,并使用net包来确定和解析传入请求的IP地址。使用此构建语句:CGO_ENABLED=0 go install -a -ldflags '-s' .我的程序中的这个序言:package mainimport (    "encoding/json"    "errors"    "fmt"    "log"    "net"    "net/http"    "path/filepath"    "strings"    "golang.org/x/blog/content/context/userip"    "github.com/oschwald/maxminddb-golang")这与 go 1.3 一起构建,生成静态链接程序,但不适用于 go 1.4.2。构建成功,但程序不是静态链接的。在源代码中:// Contains returns true if substr is within s.func Contains(s, substr string) bool {    return Index(s, substr) >= 0}// ContainsAny returns true if any Unicode code points in chars are within s.func ContainsAny(s, chars string) bool {    return IndexAny(s, chars) >= 0}唯一的区别似乎是substr和the Unicode code points in chars。我写了一些测试来测试它们。他们的行为似乎是相同的。我不明白什么时候使用哪个。
查看完整描述

1 回答

?
拉丁的传说

TA贡献1789条经验 获得超8个赞

我认为两个功能是完全不同的。包含用于检测字符串是否包含子字符串。ContainsAny 用于检测字符串是否包含提供的字符串中的任何字符。


查看完整回答
反对 回复 2021-10-18
  • 1 回答
  • 0 关注
  • 1388 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信