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
+21k Golang : Convert PNG transparent background image to JPG or JPEG image
+17.1k Golang : Get the IPv4 and IPv6 addresses for a specific network interface
+8.3k Golang : Check from web if Go application is running or not
+20k Golang : Measure http.Get() execution time
+8.6k Golang : Generate Datamatrix barcode
+6.1k PHP : How to check if an array is empty ?
+7.3k CloudFlare : Another way to get visitor's real IP address
+12.5k Golang : Extract part of string with regular expression
+9.4k Golang : Temperatures conversion example
+9k Golang : Gaussian blur on image and camera video feed examples
+12.2k Golang : Perform sanity checks on filename example
+13.3k Golang : Skip blank/empty lines in CSV file and trim whitespaces example