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
+23.6k Golang : Use regular expression to validate domain name
+25.5k Golang : Convert IP address string to long ( unsigned 32-bit integer )
+9.7k Golang : Convert octal value to string to deal with leading zero problem
+10.8k Golang : Create S3 bucket with official aws-sdk-go package
+18.5k Golang : convert int to string
+20.4k Golang : Convert date string to variants of time.Time type examples
+8k Golang : Emulate NumPy way of creating matrix example
+4.7k Google : Block or disable caching of your website content
+4.2k Linux/MacOSX : Search and delete files by extension
+5.9k Golang : Dealing with backquote
+18.9k Golang : Get host name or domain name from IP address
+23.9k Golang : How to validate URL the right way