Golang : Convert slice to array
For new comer to Golang, slice and array can be confusing sometimes. In a nutshell, a slice length(size) is flexible and array length(size) is not. Since they are different, many assume that by using the =
operator, a new array will be populated with the elements from a slice.
To convert a slice to array properly, use the builtin copy()
function.
For example :
package main
import "fmt"
func main() {
slice := []byte("abcd1234")
var arr [8]byte
copy(arr[:], slice[:8])
fmt.Println(arr)
fmt.Println(string(arr[:])) // []byte to string
}
Sample output :
[97 98 99 100 49 50 51 52]
abcd1234
See also : Golang : Convert string to array/slice
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+17.8k Golang : delete and modify XML file content
+5.7k Fix fatal error: evacuation not done in time problem
+6.6k PHP : Shuffle to display different content or advertisement
+14.3k Golang : Convert IP version 6 address to integer or decimal number
+6.3k Linux/Unix : Commands that you need to be careful about
+29.3k Golang : missing Git command
+8.7k Golang : Another camera capture GUI application with GTK and OpenCV
+9.5k Golang : Generate EAN barcode
+16.4k Golang : How to extract links from web page ?
+5.2k Swift : Convert (cast) Float to Int or Int32 value
+7.2k Golang : Array mapping with Interface
+14.7k Golang : Convert(cast) int to float example