List of Golang XML tutorials
Extensible Markup Language (XML) is a markup language that defines a set of rules for encoding documents in a format that is both human-readable and machine-readable. The design goals of XML emphasize simplicity, generality, and usability over the Internet.
These tutorials below provide examples on how to read, create and manipulate XML files in Golang :
Read data from XML file, map to data structures and print out the data structures.
Create map representation of a company data and output the map to XML file.
Read data from XML file, map to data structures, delete and modify records and output the modified map to a new XML file.
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
+11.8k Golang : concatenate(combine) strings
+6.2k Golang : Routes multiplexer routing example with regular expression control
+3.1k Facebook : How to place save to Facebook button on your website
+3.1k Linux/MacOSX : Search and delete files by extension
+8.3k RPM : error: db3 error(-30974) from dbenv->failchk: DB_RUNRECOVERY: Fatal error, run database recovery
+7.1k Golang : Quadratic example
+6.9k Golang : Heap sort example
+7k Golang : How to control fmt or log print format?
+13k Golang : Fix cannot convert buffer (type *bytes.Buffer) to type string error
+18.3k Golang : Fix type interface{} has no field or no methods and type assertions example
+13.5k Golang : Find file size(disk usage) with filepath.Walk