📌  相关文章
📜  高朗 |在指定的分隔符之后拆分切片

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

在 Go 语言中切片比数组更强大、灵活、方便,是一种轻量级的数据结构。切片是一个可变长度的序列,用于存储相似类型的元素,不允许在同一个切片中存储不同类型的元素。
在 Go 字节切片中,您可以使用SplitAfterN()函数在指定分隔符之后拆分切片。此函数在给定分隔符的每个实例之后将切片拆分为所有子切片,并返回包含这些子切片的切片。如果给定的分隔符为空,则它会在每个 UTF-8 序列之后拆分,并且计数指示要返回的子切片数。它是在 bytes 包下定义的,因此您必须在程序中导入 bytes 包才能访问 SplitAfterN函数。

句法:

func SplitAfterN(o_slice, sep []byte, m int) [][]byte

这里, o_slice是原始字符串,sep 是分隔符,m 用于查找要返回的子字符串的数量。在这里,如果m>0 ,则它最多返回 m 个子切片,并且最后一个字符串子切片不会拆分。如果m == 0 ,那么它将返回 nil。如果m<0 ,则它将返回所有子切片。让我们在给定示例的帮助下讨论这个概念:

示例 1:

// 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 SplitAfterN function 
    res1 := bytes.SplitAfterN([]byte("****Welcome, to, GeeksforGeeks****"), 
                                                           []byte(","), -1) 
         
    res2 := bytes.SplitAfterN([]byte("Learning x how x to x "+
                 "trim x a x slice of bytes"), []byte("x"), 3) 
         
    res3 := bytes.SplitAfterN([]byte("Geeks,for,Geeks, Geek"), []byte(","), 0) 
         
    res4 := bytes.SplitAfterN([]byte(""), []byte(","), 2) 
     
    // Display the results 
    fmt.Printf("\nFinal Result after splitting:\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 Result after splitting:

Slice 1: [****Welcome,  to,  GeeksforGeeks****]
Slice 2: [Learning x  how x  to x trim x a x slice of bytes]
Slice 3: []
Slice 4: []

示例 2:

// 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', 'G', 'e', 'e', 'k', 's', '#', '#'} 
         
    slice_2 := []byte{'A', 'p', 'p','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 SplitAfterN function 
    res1 := bytes.SplitAfterN(slice_1, []byte("eek"), 2) 
    res2 := bytes.SplitAfterN(slice_2, []byte(""), 3) 
    res3 := bytes.SplitAfterN(slice_3, []byte("%"), 0) 
     
    // Display the results 
    fmt.Printf("\n\nAfter splitting:\n") 
    fmt.Printf("\nSlice 1: %s", res1) 
    fmt.Printf("\nSlice 2: %s", res2) 
    fmt.Printf("\nSlice 3: %s", res3) 
     
} 

输出:

Original Slice:
Slice 1: !!GeeksforGeeksGeeks##
Slice 2: Apppple
Slice 3: %g%e%e%k%s%

After splitting:

Slice 1: [!!Geek sforGeeksGeeks##]
Slice 2: [A p ppple]
Slice 3: []