Golang 如何修剪字节片的右侧

Golang 如何修剪字节片的右侧

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

在Go的字节片中,你可以使用 TrimRight() 函数从给定的slice中修剪所有结束的UTF-8编码的代码点。这个函数通过切掉所有在给定字符串中指定的尾部UTF-8编码的代码点,返回原始分片的一个子片。如果给定的字节片在其右侧不包含指定的字符串,那么这个函数将返回原始的字节片,不做任何改变。它被定义在字节包下,因此,你必须在你的程序中导入字节包以访问TrimRight函数。

语法

func TrimRight(ori_slice[]byte, cut_string string) []byte

这里,ori_slice是原始的字节片,cut_string代表你想在给定的字节片中修剪的一个字符串。让我们借助给定的例子来讨论这个概念。

例1 :

// Go program to illustrate the concept
// of right trim in the slice of bytes
package main
  
import (
    "bytes"
    "fmt"
)
  
func main() {
  
    // Creating and trimming
    // the slice of bytes
    // Using TrimRight function
    res1 := bytes.TrimRight([]byte("****Welcome to GeeksforGeeks****"), "*")
    res2 := bytes.TrimRight([]byte("!!!!Learning how to trim a slice of bytes@@@@"), "!@")
    res3 := bytes.TrimRight([]byte("^^Geek&&"), "$")
  
    // 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: !!!!Learning how to trim a slice of bytes
Slice 3: ^^Geek&&

例2 :

// Go program to illustrate the concept
// of right 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 trailing Unicodes 
    // points from the given slice of bytes
    // Using TrimRight function
    res1 := bytes.TrimRight(slice_1, "!#")
    res2 := bytes.TrimRight(slice_2, "^")
    res3 := bytes.TrimRight(slice_3, "@")
  
    // 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: **Apple
Slice 3: %geeks%

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程