Is there any easy way to convert [][] interface{}
to [][]string
?
What I want is to to write this [][] interface{}
to a csv
but writer
in go
accepts only [][]string
.
Additional info : my [][] interface{}
contains 4 columns 2 of them are string and 2 are json.Number
.
Thanks in advance.