gpt4 book ai didi

string - 查找字符串中子字符串的索引,指定起始索引

转载 作者:IT王子 更新时间:2023-10-29 00:52:38 24 4
gpt4 key购买 nike

我知道有 strings.Indexstrings.LastIndex,但它们只找到第一个和最后一个。有没有我可以使用的函数,我可以在其中指定起始索引?类似于我示例中的最后一行。

例子:

s := "go gopher, go"
fmt.Println(strings.Index(s, "go")) // Position 0
fmt.Println(strings.LastIndex(s, "go")) // Postion 11
fmt.Println(strings.Index(s, "go", 1)) // Position 3 - Start looking for "go" begining at index 1

最佳答案

这是一个恼人的疏忽,您必须创建自己的函数。

类似于:

func indexAt(s, sep string, n int) int {
idx := strings.Index(s[n:], sep)
if idx > -1 {
idx += n
}
return idx
}

关于string - 查找字符串中子字符串的索引,指定起始索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25837030/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com