Skip to content

Latest commit

 

History

History
16 lines (15 loc) · 549 Bytes

README.md

File metadata and controls

16 lines (15 loc) · 549 Bytes

INI Parser

INI Parser with GO.

INI files are parsed by go-ini line-by-line. Each line may be one of the following:

  • A section definition: [section-name]
  • A property: key = value
  • Blank. The line will be ignored.

Features:

  • Read INI file and extract all information.
  • Read data from string.
  • List all sections with their keys.
  • List sections' names.
  • Update value of specific key.
  • List all keys of specific section.
  • Save data to new file.