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
+16.4k Golang : How to generate QR codes?
+7.4k Golang : get the current working directory of a running program
+16.3k Golang : Set up source IP address before making HTTP request
+8.6k Golang : Get curl -I or head data from URL example
+22.2k Golang : Strings to lowercase and uppercase example
+13.5k Golang : Fix image: unknown format error
+40.5k Golang : How to check if a string contains another sub-string?
+11.9k Golang : Validate email address
+5.8k Linux/Unix : Commands that you need to be careful about
+33.2k Golang : How to check if slice or array is empty?
+62.2k Golang : Convert HTTP Response body to string
+9k Golang : Find the length of big.Int variable example