[go-nuts] Re: Help with XML parsing

2018-04-03 Thread Mandolyte
I have some utilities that should give you some help. Documented in three blog articles. Here is the first one. http://www.mandolyte.info/2017/12/encodingxml.html which points to a generic parser that can be used on any XML document (I think :-)) and outputs a CSV "report". HTH, Cecil On

[go-nuts] Re: Help with XML parsing

2018-04-03 Thread C Banning
https://play.golang.org/p/0Zl9J51yDiF On Tuesday, April 3, 2018 at 4:36:34 PM UTC-6, XXX ZZZ wrote: > > Thanks a lot for your reply, any particular reason of why "response" > should be left out? given that is still a parent tag. > > As for getting the bid attribute, any idea how to do that? > >

[go-nuts] Re: Help with XML parsing

2018-04-03 Thread XXX ZZZ
Thanks a lot for your reply, any particular reason of why "response" should be left out? given that is still a parent tag. As for getting the bid attribute, any idea how to do that? El martes, 3 de abril de 2018, 19:29:41 (UTC-3), C Banning escribió: > > https://play.golang.org/p/MwpdBwvRnUP >

[go-nuts] Re: Help with XML parsing

2018-04-03 Thread C Banning
https://play.golang.org/p/MwpdBwvRnUP On Tuesday, April 3, 2018 at 2:47:49 PM UTC-6, XXX ZZZ wrote: > > Hello, > > I'm trying to parse an XML with golang but I'm having a hard time creating > a parser for the string, in fact I couldn't even get an output using > interface{}. > > package main >