📌  相关文章
📜  在Golang中的字节切片中查找指定字节的索引值

📅  最后修改于: 2021-10-24 13:21:27             🧑  作者: Mango

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

句法:

func IndexByte(ori_slice []byte, val byte) int

这里, ori_slice是原始切片, val是一个字节,我们要找到第一个索引值。让我们在给定示例的帮助下讨论这个概念:

示例 1:

// Go program to illustrate the concept
// of the index in the slice of bytes
package main
  
import (
    "bytes"
    "fmt"
)
  
func main() {
  
    // Creating and finding the index
    // of the slice of bytes
    // Using IndexByte function
    res1 := bytes.IndexByte([]byte("****Welcome to GeeksforGeeks****"), 
                                                             byte('o'))
      
    res2 := bytes.IndexByte([]byte("Learning how to trim a slice of bytes"),
                                                                 byte('z'))
      
    res3 := bytes.IndexByte([]byte("GeeksforGeeks, Geek"), byte('k'))
  
    // 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: 8
Slice 2: -1
Slice 3: 3

示例 2:

// Go program to illustrate the concept
// of the 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 index of 
    // the slice of bytes
    // Using IndexByte function
    res1 := bytes.IndexByte(slice_1, byte('!'))
    res2 := bytes.IndexByte(slice_2, byte('p'))
    res3 := bytes.IndexByte(slice_3, byte('x'))
  
    // Display the results
    fmt.Printf("\n\nLast Index:\n")
    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: 0
Slice 2: 1
Slice 3: -1