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 : Get IP addresses of a domain name
+9.3k Golang : Generate EAN barcode
+8.1k Golang : Qt splash screen with delay example
+23.5k Golang : minus time with Time.Add() or Time.AddDate() functions to calculate past date
+5.7k Unix/Linux : How to test user agents blocked successfully ?
+10.3k Golang : Generate random integer or float number
+32.6k Golang : Regular Expression for alphanumeric and underscore
+79.5k Golang : How to return HTTP status code?
+14.5k Golang : Send email with attachment(RFC2822) using Gmail API example
+25.6k Golang : How to write CSV data to file