📜  字符串.LastIndexByte() Golang函数示例

📅  最后修改于: 2021-10-25 02:55:06             🧑  作者: Mango

字符串.LastIndexByte() Golang 中的函数返回原始字符串给定字节的最后一个实例的索引。如果给定的字节在原始字符串不可用,则此方法将返回 -1。

句法:

func LastIndexByte(str string, b byte) int

这里,str 是原始字符串,b 是一个字节,我们要找到它的最后一个索引值。

返回值:它返回整数。

示例 1:

// Golang program to illustrate the
// strings.LastIndexByte() Function
package main
  
// importing fmt and strings
import (
    "fmt"
    "strings"
)
  
// calling main method
func main() {
  
    // returns the last index of 'g' in string.
    fmt.Println(strings.LastIndexByte("geeksforgeeks", 'g'))
  
    // returns the last index of 'k' in string.
    fmt.Println(strings.LastIndexByte("geekgeekgeek", 'k'))
}

输出:

8
11

示例 2:

// Golang program to illustrate the
// strings.LastIndexByte() Function
package main
  
// importing fmt and strings
import (
    "fmt"
    "strings"
)
  
// calling main method
func main() {
  
    // performs case-insensitive search(returns -1).
    fmt.Println(strings.LastIndexByte("GeeksForGeeks", 'g'))
  
    // performs case-insensitive search(returns -1).
    fmt.Println(strings.LastIndexByte("GeeKGeeKGeeK", 'k'))
}

输出:

-1
-1