golang如何判断字符串中的字符是否存在?
发表于:2024-11-30 作者:热门IT资讯网编辑
编辑最后更新 2024年11月30日,golang判断字符是否存在字符串中的方法:判断子字符串或字符在父字符串中出现的位置(索引)Index 返回字符串 str 在字符串 s 中的索引( str 的第一个字符的索引),-1 表示字符串 s
golang判断字符是否存在字符串中的方法:
判断子字符串或字符在父字符串中出现的位置(索引)
Index 返回字符串 str 在字符串 s 中的索引( str 的第一个字符的索引),-1 表示字符串 s 不包含字符串 str :
strings.Index(s, str string) int
LastIndex 返回字符串 str 在字符串 s 中最后出现位置的索引( str 的第一个字符的索引),-1 表示字符串 s 不包含字符串 str :
strings.LastIndex(s, str string) int
如果 ch 是非 ASCII 编码的字符,建议使用以下函数来对字符进行定位:
strings.IndexRune(s string, ch int) int
示例:
package mainimport ("fmt""strings")func main() {var str string = "Hi, I'm Marc, Hi."fmt.Printf("The position of \"Marc\" is: ")fmt.Printf("%d\n", strings.Index(str, "Marc"))fmt.Printf("The position of the first instance of \"Hi\" is: ")fmt.Printf("%d\n", strings.Index(str, "Hi"))fmt.Printf("The position of the last instance of \"Hi\" is: ")fmt.Printf("%d\n", strings.LastIndex(str, "Hi"))fmt.Printf("The position of \"Burger\" is: ")fmt.Printf("%d\n", strings.Index(str, "Burger"))}
以上就是golang判断字符是否存在字符串中的详细内容,更多请关注其它相关文章!