如何修剪 Golang 中的一片字节?
在 Go 语言中切片比一个数组更强大、灵活、方便,是一个轻量级的数据结构。切片是存储相似类型元素的可变长度序列,不允许在同一切片中存储不同类型的元素。 在字节的 Go 切片中,您可以使用 Trim() 功能从给定切片中修剪所有前导和尾随的 UTF-8 编码码点。该函数通过切断给定字符串中指定的所有 UTF 8 编码的前导和尾随码点,返回原始切片的子切片。如果给定的字节片段中不包含指定的字符串,则此函数返回原始片段,不做任何更改。它是在字节包下定义的,所以你必须在你的程序中导入字节包来访问 Trim 函数。
语法:
func Trim(ori_slice[]byte, cut_string string) []byte
这里, ori_slice 是字节的原始切片,cut_string 表示要在给定切片中修剪的字符串。让我们借助给定的例子来讨论这个概念:
例 1:
// Go program to illustrate the concept
// of trim 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 leading
// and trailing Unicodes points
// from the given slice of bytes
// Using Trim function
res1 := bytes.Trim(slice_1, "!#")
res2 := bytes.Trim(slice_2, "*^")
res3 := bytes.Trim(slice_3, "@")
// Display the results
fmt.Printf("New 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: Apple
Slice 3: %geeks%
例 2:
// Go program to illustrate the concept
// of trim in the slice of bytes
package main
import (
"bytes"
"fmt"
)
func main() {
// Creating and trimming
// the slice of bytes
// Using Trim function
res1 := bytes.Trim([]byte("****Welcome to GeeksforGeeks****"), "*")
res2 := bytes.Trim([]byte("!!!!Learning how to trim a slice of bytes@@@@"), "!@")
res3 := bytes.Trim([]byte("^^Geek&&"), "{content}quot;)
// Display the results
fmt.Printf("Final 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: Learning how to trim a slice of bytes
Slice 3: ^^Geek&&
版权属于:月萌API www.moonapi.com,转载请注明出处