📌  相关文章
📜  如何在 Golang 中修剪一段字节的右侧?

📅  最后修改于: 2021-10-25 02:48:40             🧑  作者: Mango

在 Go 语言中切片比数组更强大、灵活、方便,是一种轻量级的数据结构。切片是一个可变长度的序列,用于存储相似类型的元素,不允许在同一个切片中存储不同类型的元素。
在 Go 字节切片中,您可以使用TrimRight()函数从给定切片中修剪所有结束的 UTF-8 编码代码点。此函数通过切掉给定字符串中指定的所有尾随 UTF-8 编码代码点,返回原始切片的子切片。如果给定的字节切片在其右侧不包含指定的字符串,则此函数返回原始切片而不做任何更改。它是在 bytes 包下定义的,因此您必须在程序中导入 bytes 包才能访问 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%