strings.IndexAny() Golang中的函数用于从原始字符串中的chars返回任何Unicode代码点的第一个实例的索引。如果来自chars的Unicode代码点在原始字符串中不可用,则此方法将返回-1。
用法:
func IndexAny(str, charstr string) int
在这里,str是原始字符串,charstr是chars的Unicode代码点,我们想要查找索引值。
范例1:
// Golang program to illustrate
// the strings.IndexAny() Function
package main
import (
"fmt"
"strings"
)
// Main function
func main() {
// Creating and initializing the strings
str1:= "GeeksforGeeks - A Computer Science Portal"
str2:= "GFG is the Best"
// Displaying strings
fmt.Println("String 1:", str1)
fmt.Println("String 2:", str2)
// Finding the index value
// of the given strings
// Using IndexAny() function
res1:= strings.IndexAny(str1, "G")
res2:= strings.IndexAny(str2, "Be")
res3:= strings.IndexAny("GFG, geeks", "uywq")
// Displaying the result
fmt.Println("\nIndex values:")
fmt.Println("Result 1:", res1)
fmt.Println("Result 2:", res2)
fmt.Println("Result 3:", res3)
}
输出:
String 1: GeeksforGeeks - A Computer Science Portal String 2: GFG is the Best Index values: Result 1: 0 Result 2: 9 Result 3: -1
范例2:
// Golang program to illustrate
// the strings.IndexAny() Function
package main
import (
"fmt"
"strings"
)
// Main function
func main() {
// using the function
fmt.Println(strings.IndexAny("Why GFG?", "F"))
}
输出:
5
相关用法
- 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()用法及代码示例
注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 strings.IndexAny() Function in Golang With Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。