TOML'den JSON'a Dönüştürücü

Ters dönüşüme mi ihtiyacınız var?
JSON to TOML Converter

TOML Girdisi

1

JSON Çıktısı

JSON biçimine dönüştürmek için TOML verisi girin

Dönüştürülen veriler burada görünecek

TOML'u JSON'a nasıl dönüştürürsünüz

  1. Adım 1 – TOML yapılandırmasını yapıştırın

    • TOML key-value, [sections] veya [[array_tables]] içeriklerini editöre yapıştırın.
    • Değerler string, sayı, boolean, dizi veya tarih olabilir.
    • Bilgisayarınızdan .toml dosyaları içe aktarabilirsiniz.
  2. Adım 2 – JSON'u inceleyin

    • Araç TOML semantiğini geçerli JSON nesnelerine dönüştürür.
    • Tarihler (RFC 3339) string olarak korunur ve mümkün olduğunda tipler muhafaza edilir.
    • Tablo yapılarının iç içe JSON özellikleri olarak temsil edildiğini doğrulayın.
  3. Adım 3 – Çıktıyı dışa aktarın

    • JSON'u kopyalayıp JavaScript/TypeScript uygulamalarında kullanın.
    • Veri taşıma veya API kullanımı için .json olarak indirin.
Example: TOML to JSON
# Input TOML
title = "TOML Example"

[owner]
name = "Tom Preston-Werner"

// Output JSON
{
  "title": "TOML Example",
  "owner": {
    "name": "Tom Preston-Werner"
  }
}

Related tools

Sık Sorulan Sorular

What is TOML format?

TOML (Tom's Obvious Minimal Language) is a configuration file format that's easy to read due to obvious semantics. It's designed to map unambiguously to a hash table.

How are TOML sections converted?

TOML sections [section] become nested JSON objects. Dotted keys like 'database.host' create nested structures automatically.

What TOML features are supported?

The converter supports strings, numbers, booleans, arrays, inline tables, nested sections, and basic date/time parsing. Complex multiline strings and advanced TOML features may have limited support.

Are array tables supported?

Yes. Array tables [[products]] are converted to JSON arrays containing objects, which is useful for representing repeated configuration blocks.

Is my data secure?

Yes, all data processing happens entirely in your browser. Your data is never sent to any server, ensuring complete privacy and security.

TOML'den JSON'a Dönüştürücü | JSONSwiss