El segmento de lenguaje de Go es más poderoso, flexible y conveniente que una array y es una estructura de datos liviana. El segmento es una secuencia de longitud variable que almacena elementos de un tipo similar, no está permitido almacenar diferentes tipos de elementos en el mismo segmento.
En el segmento de bytes Go, se le permite recortar todos los puntos de código codificados en UTF-8 finales del segmento dado usando TrimRight()función. Esta función devuelve un subsector del segmento original cortando todos los puntos de código codificados en UTF-8 finales que se especifican en la string dada. Si el segmento de bytes dado no contiene la string especificada en su lado derecho, esta función devuelve el segmento original sin ningún cambio. Se define en el paquete de bytes, por lo que debe importar el paquete de bytes en su programa para acceder a la función TrimRight.
Sintaxis:
func TrimRight(ori_slice[]byte, cut_string string) []byte
Aquí, ori_slice es el segmento original de bytes y cut_string representa una string que desea recortar en el segmento dado. Discutamos este concepto con la ayuda de los ejemplos dados:
Ejemplo 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) }
Producción:
Final Slice: Slice 1: ****Welcome to GeeksforGeeks Slice 2: !!!!Learning how to trim a slice of bytes Slice 3: ^^Geek&&
Ejemplo 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) }
Producción:
Original Slice: Slice 1: !!GeeksforGeeks## Slice 2: **Apple^^ Slice 3: %geeks% New Slice: Slice 1: !!GeeksforGeeks Slice 2: **Apple Slice 3: %geeks%
Publicación traducida automáticamente
Artículo escrito por ankita_saini y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA