vote up 3 vote down star

I need Notepad++ to take a json string from this

{"menu": {"id": "file","value": "File","popup": {"menuitem": [{"value": "New", "onclick": "CreateNewDoc()"},{"value": "Open", "onclick": "OpenDoc()"},{"value": "Close", "onclick": "CloseDoc()"}]}}}

to this...

{"menu": {
  "id": "file",
  "value": "File",
  "popup": {
    "menuitem": [
      {"value": "New", "onclick": "CreateNewDoc()"},
      {"value": "Open", "onclick": "OpenDoc()"},
      {"value": "Close", "onclick": "CloseDoc()"}
    ]
  }
}}

I looked around at all the TextFX options but couldn't find anything that worked.

flag

1  
Not that I know of, unfortunately. :-( – KyleFarris Oct 13 at 14:51

5 Answers

vote up 3 vote down check

Universal Indent GUI plugin for Notepad++ will turn your sample into:

{
    "menu" : {
        "id" : "file", "value" : "File", "popup" : {
            "menuitem" : [ {
                "value" : "New", "onclick" : "CreateNewDoc()";
            }
            , {
                "value" : "Open", "onclick" : "OpenDoc()";
            }
            , {
                "value" : "Close", "onclick" : "CloseDoc()";
            }
            ];
        }
    }
}
link|flag
You rock! Thanks – Donny V. Nov 20 at 18:29
unfortunately, this does not work with the newest Unicode version of Notepad++ 5.5 – Anthony Shaw 19 hours ago
vote up 0 vote down

No, not at this time.

:)

link|flag
vote up 0 vote down

I usually copy&paste code to Eclipse and there press CTRL+SHIFT+F (format code). But I did not try it yet on JSON.

link|flag
Just tried in Eclipse, don't work for JSON. – Trick Oct 20 at 16:04
vote up 0 vote down

I know you asked about NotePad++ but TextMate for OS X can do it via the JSON bundle, its called the "Reformat Document" command.

link|flag
vote up 0 vote down

A JSON pretty printer in javascript

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.