"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > How to Split a JSON Field into a String Slice During Unmarshaling in Golang?

How to Split a JSON Field into a String Slice During Unmarshaling in Golang?

Published on 2024-11-24
Browse:146

How to Split a JSON Field into a String Slice During Unmarshaling in Golang?

Custom Unmarshal with String Split in Golang

Problem:

Handling JSON unmarshalling when one field requires splitting into a slice using string operations. Specifically, the "subjects" field in the provided JSON requires splitting on '-' to create a []string.

Solution:

To achieve this, we can define a custom string slice type and implement the json.Unmarshaler interface for it. Here's how:

type strslice []string

func (ss *strslice) UnmarshalJSON(data []byte) error {
    var s string
    if err := json.Unmarshal(data, &s); err != nil {
        return err
    }
    *ss = strings.Split(s, "-")
    return nil
}

This custom type will allow us to unmarshal the "subjects" field as a string and then automatically split it into a slice.

Revised Struct:

Now, we can update our Student struct to use the custom strslice type for the "subjects" field:

type Student struct {
    StudentNumber int      `json:"student_number"`
    Name          string   `json:"name"`
    Subjects      strslice `json:"subjects"`
}

Usage:

With these modifications, we can now unmarshal the provided JSON and have the "subjects" field automatically split:

func main() {
    var s Student
    err := json.Unmarshal([]byte(src), &s)
    fmt.Println(s, err)
}

const src = `{"student_number":1234567, "name":"John Doe", "subjects":"Chemistry-Maths-History-Geography"}`

Output:

{1234567 John Doe [Chemistry Maths History Geography]} 

This approach provides a clean and customizable way to handle field transformations while unmarshalling JSON data.

Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3