¿Cómo recortar el prefijo de la porción de bytes en Golang?

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 de Go, se le permite recortar el prefijo del segmento dado usando la función TrimPrefix() . Esta función devuelve un subsector del segmento original cortando la string de prefijo inicial dada. Si el segmento de bytes dado no contiene la string de prefijo especificada, 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 TrimPrefix.

Sintaxis:

func TrimPrefix(ori_slice, pfx []byte) []byte

Aquí, ori_slice es el segmento original de bytes y pfx representa el prefijo. Discutamos este concepto con la ayuda de los ejemplos dados:

Ejemplo 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)
}

Producción:

Final Slice:

Slice 1: **Welcome to GeeksforGeeks****
Slice 2: ing how to trim a slice of bytes
Slice 3: GeeksforGeeks, Geek

Ejemplo 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)
  
}

Producción:

Original Slice:
Slice 1: !!GeeksforGeeks##
Slice 2: Apple
Slice 3: %geeks%

New Slice:

Slice 1: GeeksforGeeks##
Slice 2: pple
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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *