Convertitore INI/JSON
Converti tra INI e JSON.
INI Format Notes:
- • Sections are denoted with
[section] - • Key-value pairs use
key = value - • Comments start with
;or# - • Values with spaces should be quoted
tools.ini-json-converter.toolInfo.title - Dettagli tecnici
tools.ini-json-converter.toolInfo.details
Alternativa da riga di comando
// INI format
[database]
host = localhost
port = 5432
// JSON equivalent
{ "database": { "host": "localhost", "port": "5432" } }