Golang : Convert string slice to struct and access with reflect example
Writing this down here for my own future references. Basically, what this code does is to convert a given string data slice into struct
. Pretty handy to have when processing data output from proprietary systems.
Here you go!
package main
import (
"fmt"
"log"
"reflect"
"strconv"
)
type User struct {
Id int
Username string
}
func main() {
data := [][]string{
[]string{"1", "Adam"},
[]string{"2", "Eve"},
}
// convert data string slice to struct
// such as
//user1 := &User{"1","Adam"}
//user2 := &User{"2","Eve"}
users := []*User{}
for _, v := range data {
//fmt.Println("data: ", v[0], v[1])
// convert v[0] to type integer
id, err := strconv.Atoi(v[0])
if err != nil {
log.Fatal(err, v[0])
}
user := &User{id, v[1]}
users = append(users, user)
}
// the reflect way
for i := 0; i < 2; i++ {
u := reflect.ValueOf(users[i])
id := reflect.Indirect(u).FieldByName("Id")
name := reflect.Indirect(u).FieldByName("Username")
fmt.Println(id, name)
fmt.Println("==========")
}
}
Output:
1 Adam
==========
2 Eve
==========
Happy coding!
Reference:
https://www.socketloop.com/tutorials/golang-how-to-get-struct-field-and-value-by-name
See also : Golang : How to get struct field and value by name
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
+18.9k Golang : How to make function callback or pass value from function as parameter?
+25.3k Golang : Storing cookies in http.CookieJar example
+19.4k Golang : Calculate entire request body length during run time
+7.2k Golang : Transform lisp or spinal case to Pascal case example
+9.8k Golang : Qt get screen resolution and display on center example
+52k Golang : How to get time in milliseconds?
+24.7k Golang : How to validate URL the right way
+15k Golang : Basic authentication with .htpasswd file
+16k Golang : Update database with GORM example
+5.4k Golang : Intercept, inject and replay HTTP traffics from web server
+5.7k PHP : Convert string to timestamp or datestamp before storing to database(MariaDB/MySQL)
+7.6k Golang : Detect sample rate, channels or latency with PortAudio