I want to assign string to bytes array:
var arr [20]byte
str := "abc"
for k, v := range []byte(str) {
arr[k] = byte(v)
}
Have another method?
|
I want to assign string to bytes array:
Have another method? |
|||
|
For example,
Output:
|
||||
|
|
stris greater than the length ofarrthen you will get an "index out of range" error. – peterSO Nov 7 '11 at 4:13