Aiuta Jason a formattare il suo JSON


11

Jason ha un grande JSON ma è illeggibile, quindi ha bisogno di prettificarlo.

Specifiche di formattazione

JSON ha 4 diversi tipi:

  • Numeri; Appena0-9
  • Stringhe; Le "stringhe tra virgolette doppie sono sfuggite a\
  • Array; Gli elementi delimitati da [], con elementi separati da ,, possono essere di questi tipi
  • Oggetti; Delimitato da {}, il formato è key: valuedove la chiave è una stringa e il valore è uno di questi tipi

Spaziatura

  • Le matrici devono avere esattamente uno spazio dopo le virgole tra gli elementi
  • Gli oggetti dovrebbero avere solo uno spazio tra la chiave e il valore, dopo il :

dentellatura

  • Ogni livello di annidamento è rientrato di 2 in più rispetto al precedente
  • Ogni coppia chiave / valore oggetto è sempre sulla propria riga. Gli oggetti sono rientrati
  • Un array viene rientrato su più righe se contiene un altro array o oggetto. Altrimenti l'array rimane su una riga

Regole

  • Non sono consentiti incorporati che banalizzano questo compito .
  • Come sempre le scappatoie standard non sono ammesse

Esempi

[1,2,3]
[1, 2, 3]
{"a":1,"b":4}
{
  "a": 1,
  "b": 4
}
"foo"
"foo"
56
56
{"a":[{"b":1,"c":"foo"},{"d":[2,3,4,1], "a":["abc","def",{"d":{"f":[3,4]}}]}]}
{
  "a": [
    {
      "b": 1,
      "c": "foo"
    },
    {
      "d": [2, 3, 4, 1],
      "a": [
        "abc",
        "def",
        {
          "d": {
            "f": [3, 4]
          }
        }
      ]
    }
  ]
}
[2,["foo123 ' bar \" baz\\", [1,2,3]]]
[
  2,
  [
    "foo123 ' bar \" baz\\",
    [1, 2, 3]
  ]
]
[1,2,3,"4[4,5]"]
[1, 2, 3, "4[4,5]"]
[1,2,3,{"b":["{\"c\":[2,5,6]}",4,5]}]
[
  1,
  2,
  3,
  {
    "b": ["{\"c\":[2,5,6]}", 4, 5]
  }
]

1
Sono consentiti i builtin di analisi JSON ?
PurkkaKoodari

Gli oggetti / le matrici possono essere vuoti? Possiamo ancora stampare uno spazio dopo le virgole negli array se si dividono su più righe?
Martin Ender

@ MartinBüttner no, e sì
Downgoat

@ Pietu1998 hm, sto per dire di no
Downgoat

Sono consentite le lingue del parser di lingue?
Mama Fun Roll

Risposte:


1

JavaScript (ES6), 368 byte

f=(s,r=[],i='',j=i+'  ',a=[])=>s<'['?([,,r[0]]=s.match(s<'0'?/("(?:\\.|[^"])*")(.*)/:/(\d+)(.*)/))[1]:s<'{'?(_=>{for(;s<']';s=r[0])a.push(f(s.slice(1),r,j));r[0]=s.slice(1)})()||/\n/.test(a)?`[
${j+a.join(`,
`+j)}
${i}]`:`[${a.join`, `}]`:(_=>{for(a=[];s<'}';s=r[0])a.push(f(s.slice(1),r,j)+': '+f(r[0].slice(1),r,j));r[0]=s.slice(1)})()||`{
${j+a.join(`,
`+j)}
${i}}`

Meno golf:

function j(s, r=[], i='') { // default to no indentation
    if (s < '0') { // string
        let a = s.match(/("(?:\\.|[^"])*")(.*)/);
        r[0] = a[2]; // pass the part after the string back to the caller
        return a[1];
    } else if (s < '[') { // number
        let a = s.match(/(\d+)(.*)/);
        r[0] = a[2]; // pass the part after the string back to the caller
        return a[1];
    } else if (s < '{') { // array
        let a = [];
        while (s < ']') { // until we see the end of the array
            s = s.slice(1);
            a.push(j(s, r, i + '  ')); // recurse with increased indentation
            s = r[0]; // retrieve the rest of the string
        }
        r[0] = s.slice(1); // pass the part after the string back to the caller
        if (/\n/.test(a.join())) { // array contained object
            return '[\n  ' + i + a.join(',\n  ' + i) + '\n' + i + ']';
        } else {
            return '[' + a.join(', ') + ']';
        }
    } else { // object
        let a = [];
        while (s < '}') { // until we see the end of the object
            s = s.slice(1);
            let n = j(s, r, i + '  ');
            s = r[0].slice(1);
            let v = j(s, r, i + '  ');
            a.push(n + ': ' + v);
            s = r[0]; // retrieve the rest of the string
        }
        r[0] = s.slice(1); // pass the part after the string back to the caller
        return '{\n  ' + i + a.join(',\n  ' + i) + '\n' + i + '}';
    }
}
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.