You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-library/vendor/github.com/gogf/gf/v2/text/gstr/gstr_contain.go

25 lines
754 B

// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
//
// This Source Code Form is subject to the terms of the MIT License.
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://github.com/gogf/gf.
package gstr
import "strings"
// Contains reports whether `substr` is within `str`, case-sensitively.
func Contains(str, substr string) bool {
return strings.Contains(str, substr)
}
// ContainsI reports whether substr is within str, case-insensitively.
func ContainsI(str, substr string) bool {
return PosI(str, substr) != -1
}
// ContainsAny reports whether any Unicode code points in `chars` are within `s`.
func ContainsAny(s, chars string) bool {
return strings.ContainsAny(s, chars)
}