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.2k Golang : Fix fmt.Scanf() on Windows will scan input twice problem
+22.2k Golang : Read directory content with filepath.Walk()
+6.1k Golang : Process non-XML/JSON formatted ASCII text file example
+21k Golang : Clean up null characters from input data
+15.1k Golang : Get all local users and print out their home directory, description and group id
+5.7k Golang : Launching your executable inside a console under Linux
+6k Golang : Scan forex opportunities by Bollinger bands
+9.3k Golang : Play .WAV file from command line
+15.2k Golang : Find location by IP address and display with Google Map
+6.6k Golang : Experimental emojis or emoticons icons programming language
+9.6k Golang : Load ASN1 encoded DSA public key PEM file example
+5.3k Golang : Intercept, inject and replay HTTP traffics from web server