Golang中的strings.LastIndex()函数返回给定字符串中子字符串的最后一个实例出现的起始索引。如果未找到子字符串,则返回-1。因此,此函数返回一个整数值。索引以零作为字符串的起始索引进行计数。
用法:
func LastIndex(str, substring string) int
在这里,str是原始字符串,substring是一个字符串,我们要查找其最后一个索引值。
范例1:
// Golang program to illustrate the
// strings.LastIndex() Function
package main
import (
"fmt"
"strings"
)
func main() {
// taking a string
str:= "GeeksforGeeks"
substr:= "Geeks"
fmt.Println(strings.LastIndex(str, substr))
}
输出:
8
字符串是“GeeksforGeeks”,子字符串是“Geeks”,因此编译器会找到原始字符串中存在的子字符串,并显示该子字符串的最后一个实例的起始索引为8。
范例2:
// Golang program to illustrate the
// strings.LastIndex() Function
package main
import (
"fmt"
"strings"
)
func main() {
// taking strings
str:= "My favorite sport is football"
substr1:= "f"
substr2:= "ll"
substr3:= "SPORT"
// using the function
fmt.Println(strings.LastIndex(str, substr1))
fmt.Println(strings.LastIndex(str, substr2))
fmt.Println(strings.LastIndex(str, substr3))
}
输出:
21 27 -1
字符串为“我最喜欢的运动是足球”,子字符串为“f”,“ll”和“SPORT”,因此编译器在前两种情况下分别将输出显示为21和27,并且由于第三个子字符串为“SPORT”,因此认为在输出项中不存在该子字符串。字符串,因为该函数区分大小写,因此结果为-1。
相关用法
- Golang math.Lgamma()用法及代码示例
- Golang math.Float64bits()用法及代码示例
- Golang atomic.AddInt64()用法及代码示例
- Golang atomic.StoreInt64()用法及代码示例
- Golang reflect.FieldByIndex()用法及代码示例
- Golang string.Contains用法及代码示例
- Golang bits.Sub()用法及代码示例
- Golang io.PipeWriter.CloseWithError()用法及代码示例
- Golang time.Round()用法及代码示例
- Golang reflect.AppendSlice()用法及代码示例
- Golang reflect.ChanOf()用法及代码示例
- Golang flag.Bool()用法及代码示例
- Golang time.Sleep()用法及代码示例
- Golang time.Time.Year()用法及代码示例
- Golang reflect.DeepEqual()用法及代码示例
- Golang reflect.Indirect()用法及代码示例
- Golang reflect.CanAddr()用法及代码示例
- Golang reflect.CanInterface()用法及代码示例
- Golang reflect.CanSet()用法及代码示例
- Golang reflect.Cap()用法及代码示例
注:本文由纯净天空筛选整理自prakhar7大神的英文原创作品 strings.LastIndex() Function in Golang With Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。