En el lenguaje Go, el segmento es más poderoso, flexible, 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 misma rebanada.
En el segmento de bytes Ir, puede encontrar el último valor de índice de la instancia especificada del segmento dado usando la función LastIndex() . Esta función devuelve el índice de la última instancia del valor dado en el segmento original de bytes. Devuelve -1 si el valor dado no está disponible en el segmento original. 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 LastIndex.
Sintaxis:
func LastIndex(ori_slice, sep_ []byte) int
Aquí, ori_slice es el segmento original y sep_ es un segmento, cuyo último valor de índice queremos encontrar. Discutamos este concepto con la ayuda de los ejemplos dados:
Ejemplo 1:
// Go program to illustrate the concept of // the last index in the slice of bytes package main import ( "bytes" "fmt" ) func main() { // Creating and finding the last // index of the slice of bytes // Using LastIndex function res1 := bytes.LastIndex([]byte("****Welcome to GeeksforGeeks****"), []byte("ks")) res2 := bytes.LastIndex([]byte("Learning how to trim a slice of bytes"), []byte("t")) res3 := bytes.LastIndex([]byte("GeeksforGeeks, Geek"), []byte("apple")) // Display the results fmt.Printf("\nFinal Value:\n") fmt.Printf("\nSlice 1: %d", res1) fmt.Printf("\nSlice 2: %d", res2) fmt.Printf("\nSlice 3: %d", res3) }
Producción:
Final Value: Slice 1: 26 Slice 2: 34 Slice 3: -1
Ejemplo 2:
// Go program to illustrate the concept of // the last index 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) // Finding the last index // of the slice of bytes // Using LastIndex function res1 := bytes.LastIndex(slice_1, []byte("e")) res2 := bytes.LastIndex(slice_2, []byte("A")) res3 := bytes.LastIndex(slice_3, []byte("as")) // Display the results fmt.Printf("\n\nLast Index:") fmt.Printf("\nSlice 1: %d", res1) fmt.Printf("\nSlice 2: %d", res2) fmt.Printf("\nSlice 3: %d", res3) }
Producción:
Original Slice: Slice 1: !!GeeksforGeeks## Slice 2: Apple Slice 3: %geeks% Last Index: Slice 1: 12 Slice 2: 0 Slice 3: -1
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