Module ini_parser

Module ini_parser 

Source
Expand description

INI format parser INI format parser implementation

Supports standard INI format with:

  • Sections: [section_name]
  • Key-value pairs: key=value or key:value
  • Comments: ; comment or # comment
  • Escape sequences: \n, \t, \, etc.
  • Quoted values with spaces
  • Case-sensitive keys and sections

Functionsยง

parse
Parse INI format configuration
parse_ini
Parse INI format string into a Value::Table