如何在 Golang 中找到字节片的最后一个索引值?

原文:https://www . geeksforgeeks . org/如何找到 golang 中字节片的最后一个索引值/

在 Go 语言中切片比一个数组更强大、灵活、方便,是一个轻量级的数据结构。切片是存储相似类型元素的可变长度序列,不允许在同一切片中存储不同类型的元素。 在 Go 分片字节中,可以使用 LastIndex() 函数找到给定分片的指定实例的最后一个索引值。该函数返回原始字节片段中给定值的最后一个实例的索引。如果给定值在原始切片中不可用,则返回-1。它是在字节包下定义的,所以您必须在程序中导入字节包来访问 LastIndex 函数。

语法:

func LastIndex(ori_slice, sep_ []byte) int

这里 ori_slice 是原始切片, sep_ 是一个切片,我们要找到它的最后一个索引值。让我们借助给定的例子来讨论这个概念:

例 1:

// Go program to illustrate the concept of
// the last index in the slice of bytes
package main

import (
    "bytes"
    "fmt"
)

func main() {

    // Creating and finding the last
    // index of the slice of bytes
    // Using LastIndex function
    res1 := bytes.LastIndex([]byte("****Welcome to GeeksforGeeks****"),
                                                         []byte("ks"))

    res2 := bytes.LastIndex([]byte("Learning how to trim a slice of bytes"), 
                                                                []byte("t"))

    res3 := bytes.LastIndex([]byte("GeeksforGeeks, Geek"), []byte("apple"))

    // Display the results
    fmt.Printf("\nFinal Value:\n")
    fmt.Printf("\nSlice 1: %d", res1)
    fmt.Printf("\nSlice 2: %d", res2)
    fmt.Printf("\nSlice 3: %d", res3)
}

输出:

Final Value:

Slice 1: 26
Slice 2: 34
Slice 3: -1

例 2:

// Go program to illustrate the concept of
// the last index in the slice of bytes
package main

import (
    "bytes"
    "fmt"
)

func main() {

    // Creating and initializing 
    // the slice of bytes
    // Using shorthand declaration
    slice_1 := []byte{'!', '!', 'G', 'e', 'e', 'k', 's',
      'f', 'o', 'r', 'G', 'e', 'e', 'k', 's', '#', '#'}

    slice_2 := []byte{'A', 'p', 'p', 'l', 'e'}

    slice_3 := []byte{'%', 'g', 'e', 'e', 'k', 's', '%'}

    // Displaying slices
    fmt.Println("Original Slice:")
    fmt.Printf("Slice 1: %s", slice_1)
    fmt.Printf("\nSlice 2: %s", slice_2)
    fmt.Printf("\nSlice 3: %s", slice_3)

    // Finding the last index 
    // of the slice of bytes
    // Using LastIndex function
    res1 := bytes.LastIndex(slice_1, []byte("e"))
    res2 := bytes.LastIndex(slice_2, []byte("A"))
    res3 := bytes.LastIndex(slice_3, []byte("as"))

    // Display the results
    fmt.Printf("\n\nLast Index:")
    fmt.Printf("\nSlice 1: %d", res1)
    fmt.Printf("\nSlice 2: %d", res2)
    fmt.Printf("\nSlice 3: %d", res3)

}

输出:

Original Slice:
Slice 1: !!GeeksforGeeks##
Slice 2: Apple
Slice 3: %geeks%

Last Index:
Slice 1: 12
Slice 2: 0
Slice 3: -1