strings.LastIndexAny() Golang中的函数用于从给定字符串中的字符中查找任何Unicode代码点的最后一个实例的索引。如果找不到来自chars的Unicode代码点,则返回-1。因此,此函数返回一个整数值。索引以零作为字符串的起始索引进行计数。
用法:
func LastIndexAny(str, chars string) int
在这里,str是原始字符串,charstr是chars的Unicode代码点,我们想要找到最后一个索引值。
范例1:
// Golang program to illustrate the
// strings.LastIndexAny() Function
package main
import (
"fmt"
"strings"
)
func main() {
// taking a string
str:= "GeeksforGeeks"
// using the function
fmt.Println(strings.LastIndexAny(str, "Ge"))
fmt.Println(strings.LastIndexAny(str, "g"))
fmt.Println(strings.LastIndexAny(str, "sf"))
}
输出:
10 -1 12
对于第二个输出,不存在字符‘g’,因此结果显示为-1。请注意,此函数区分大小写,因此对'G'和‘g’的使用会有所不同。
范例2:
// Golang program to illustrate the
// strings.LastIndexAny() Function
package main
import (
"fmt"
"strings"
)
func main() {
// taking a string
str:= "New Delhi, India"
// using the function
fmt.Println(strings.LastIndexAny(str, "Ii"))
fmt.Println(strings.LastIndexAny(str, " "))
}
输出:
14 10
对于第一个输出,字符为“ I”和‘i’。因此,编译器将显示最后一次出现的“ I”或‘i’的索引,并且由于‘i’排在最后,因此将作为输出。对于第二个输出,要搜索的字符是一个空格。由于给定的字符串中有两个空格,因此输出将是最后一个空格的索引。
相关用法
- 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.LastIndexAny() Function in Golang With Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。