简体   繁体   中英

I want convert json object into json array using js or groovy

sample input- '{"name":"John", "age":30, "car":null}'

expected output- ['{"name":"John", "age":30, "car":null}']

want when ever we got json if it starts with "{" then wanted to push "[" and "]" at the start and end of json.

If that is all you need then you could do this:

String input =  '{"name":"John", "age":30, "car":null}'

// ...

if(input.startsWith('{')) {
    input = "[${input}]"
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM