Golang 如何分割一个字节的片断

Golang 如何分割一个字节的片断

在Go语言中slice比数组更强大、灵活、方便,是一种轻量级的数据结构。slice是一个可变长度的序列,它存储了相似类型的元素,你不允许在同一个slice中存储不同类型的元素。

在Go的字节片中,你可以使用 Split() 函数来分割给定的slice。这个函数将一个字节片分割成由给定分隔符分隔的所有子片,并返回一个包含所有这些子片的片子。它被定义在字节包下,因此,你必须在你的程序中导入字节包以访问Split函数。

语法

func Split(o_slice, sep []byte) [][]byte

这里,o_slice是字节的片断,sep是分隔符。如果sep是空的,那么它将在每个UTF-8序列之后分割。让我们借助给定的例子来讨论这个概念。

例1 :

// Go program to illustrate the concept
// of splitting a 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)
  
    // Splitting the slice of bytes
    // Using Split function
    res1 := bytes.Split(slice_1, []byte("eek"))
    res2 := bytes.Split(slice_2, []byte(""))
    res3 := bytes.Split(slice_3, []byte("%"))
  
    // Display the results
    fmt.Printf("\n\nAfter splitting:")
    fmt.Printf("\nSlice 1: %s", res1)
    fmt.Printf("\nSlice 2: %s", res2)
    fmt.Printf("\nSlice 3: %s", res3)
  
}

输出

Original Slice:
Slice 1: !!GeeksforGeeks##
Slice 2: Apple
Slice 3: %g%e%e%k%s%

After splitting:
Slice 1: [!!G sforG s##]
Slice 2: [A p p l e]
Slice 3: [ g e e k s ]

例2 :

// Go program to illustrate the concept
// of splitting a slice of bytes
package main
  
import (
    "bytes"
    "fmt"
)
  
func main() {
  
    // Creating and Splitting
    // the slice of bytes
    // Using Split function
    res1 := bytes.Split([]byte("****Welcome, to, GeeksforGeeks****"), 
                                                         []byte(","))
      
    res2 := bytes.Split([]byte("Learning x how x to x trim x a x slice of bytes"),
                                                                     []byte("x"))
      
    res3 := bytes.Split([]byte("GeeksforGeeks, Geek"), []byte(""))
      
    res4 := bytes.Split([]byte(""), []byte(","))
  
    // Display the results
    fmt.Printf("Final Value:\n")
    fmt.Printf("\nSlice 1: %s", res1)
    fmt.Printf("\nSlice 2: %s", res2)
    fmt.Printf("\nSlice 3: %s", res3)
    fmt.Printf("\nSlice 4: %s", res4)
}

输出

Final Value:

Slice 1: [****Welcome  to  GeeksforGeeks****]
Slice 2: [Learning   how   to   trim   a   slice of bytes]
Slice 3: [G e e k s f o r G e e k s ,   G e e k]
Slice 4: []

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程