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
+24.9k Golang : convert rune to integer value
+5.1k Golang : Return multiple values from function
+11.8k Golang : Perform sanity checks on filename example
+14.1k Golang : How to shuffle elements in array or slice?
+6.5k How to let Facebook Login button redirect to a particular URL ?
+5.3k PHP : Convert CSV to JSON with YQL example
+19.6k Golang : How to get time from unix nano example
+15.2k Golang : Intercept Ctrl-C interrupt or kill signal and determine the signal type
+24.9k Golang : Get current file path of a file or executable
+5.9k Golang : Get missing location after unmarshal binary and gob decode time.
+33.5k Golang : convert(cast) bytes to string