Golang 如何修剪字节片中的前缀
在Go语言中slice比数组更强大、灵活、方便,是一种轻量级的数据结构。slice是一个可变长度的序列,用来存储相似类型的元素,你不允许在同一个slice中存储不同类型的元素。
在Go的字节片中,你可以使用 TrimPrefix() 函数从给定的slice中修剪前缀。这个函数通过切掉给定的前缀字符串,返回原始分片的一个子分片。如果给定的字节片不包含指定的前缀字符串,那么这个函数将返回没有任何改变的原始字节片。它被定义在字节包下,因此,你必须在你的程序中导入字节包以访问TrimPrefix函数。
语法
func TrimPrefix(ori_slice, pfx []byte) []byte
这里,ori_slice是原始字节片,pfx代表前缀。让我们借助给定的例子来讨论这个概念。
例1 :
// Go program to illustrate the concept of
// trimming prefix in the slice of bytes
package main
import (
"bytes"
"fmt"
)
func main() {
// Creating and trimming the slice of bytes
// Using TrimPrefix function
res1 := bytes.TrimPrefix([]byte("****Welcome to GeeksforGeeks****"),
[]byte("**"))
res2 := bytes.TrimPrefix([]byte("Learning how to trim a slice of bytes"),
[]byte("Learn"))
res3 := bytes.TrimPrefix([]byte("GeeksforGeeks, Geek"), []byte("apple"))
// Display the results
fmt.Printf("\n\nFinal Slice:\n")
fmt.Printf("\nSlice 1: %s", res1)
fmt.Printf("\nSlice 2: %s", res2)
fmt.Printf("\nSlice 3: %s", res3)
}
输出
Final Slice:
Slice 1: **Welcome to GeeksforGeeks****
Slice 2: ing how to trim a slice of bytes
Slice 3: GeeksforGeeks, Geek
例2 :
// Go program to illustrate the concept
// of trimming prefix 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)
// Trimming specified prefix Unicodes
// points from the given slice of bytes
// Using TrimPrefix function
res1 := bytes.TrimPrefix(slice_1, []byte("!!"))
res2 := bytes.TrimPrefix(slice_2, []byte("A"))
res3 := bytes.TrimPrefix(slice_3, []byte("as"))
// Display the results
fmt.Printf("\n\nNew Slice:\n")
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: %geeks%
New Slice:
Slice 1: GeeksforGeeks##
Slice 2: pple
Slice 3: %geeks%