Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to pretty print a Golang structure? [duplicate]

Tags:

go

I am unmarshaling a struct and I would like it to print it in a formatted manner.

My code (https://play.golang.org/p/D0KwGP6Cxa0) currently produces the following output:

main.ADIStruct{CondensedADI:[]main.CondensedADI{main.CondensedADI{Name:"Type", Value:"title"}, main.CondensedADI{Name:"Title", Value:"Ste Life_S01_E10_"}, main.CondensedADI{Name:"Title_Brief", Value:"Ste Life_S01_E10_HD"}, main.CondensedADI{Name:"Episode_Name", Value:"Cody Goes to Camp"}, main.CondensedADI{Name:"Episode_ID", Value:"10"}, main.CondensedADI{Name:"Summary_Short", Value:"Zack is excited to finally get rid of his brother when Cody leaves for math camp."}, main.CondensedADI{Name:"Rating", Value:"TV-G"}, main.CondensedADI{Name:"Run_Time", Value:"00:22:50"}, main.CondensedADI{Name:"Display_Run_Time", Value:"00:23"}, main.CondensedADI{Name:"Year", Value:"2005"}, main.CondensedADI{Name:"Closed_Captioning", Value:"Y"}, main.CondensedADI{Name:"Genre", Value:"Family"}, main.CondensedADI{Name:"Billing_ID", Value:"00000"}, main.CondensedADI{Name:"Actors_Display", Value:"Ashley Tisdale ( Maddie ), Brenda Song ( London ), Cole Sprouse ( Cody ), Dylan Sprouse ( Zack ), Kim Rhodes ( Carey ), Phill Lewis ( Moseby )"}, main.CondensedADI{Name:"Licensing_Window_Start", Value:"2019-05-15 00:00:00"}, main.CondensedADI{Name:"Licensing_Window_End", Value:"2019-10-31 00:00:00"}, main.CondensedADI{Name:"Preview_Period", Value:"0"}, main.CondensedADI{Name:"Display_As_New", Value:"7"}, main.CondensedADI{Name:"Display_As_Last_Chance", Value:"7"}, main.CondensedADI{Name:"Provider_QA_Contact", Value:"[email protected]"}, main.CondensedADI{Name:"Suggested_Price", Value:"0.00"}, main.CondensedADI{Name:"Category", Value:"Disney Channel HD/Suite Life"}}}

I would like it to only have the name and value and have a new line after each item. Such as this:

Name:"Type", Value:"title"

Name:"Title", Value:"Ste Life_S01_E10_"

Any ideas how I could do that?

like image 702
lakeIn231 Avatar asked May 21 '19 15:05

lakeIn231


1 Answers

There is a function in the Go standard library taking a interface{} and producing an indented JSON output: json.MarshalIndent.

Here is an example how it could be applied to your use-case (https://play.golang.org/p/3geUEEHESSa):

s, _ := json.MarshalIndent(b, "", "\t")
fmt.Print(string(s))

While not being exactly what you expected, this produces a JSON output which is pretty readable:

{
    "CondensedADI": [
        {
            "Name": "Type",
            "Value": "title"
        },
        {
            "Name": "Title",
            "Value": "Ste Life_S01_E10_"
        },
        ...
like image 98
aymericbeaumet Avatar answered Sep 27 '22 23:09

aymericbeaumet