sample input- '{"name":"John", "age":30, "car":null}'
expected output- ['{"name":"John", "age":30, "car":null}']
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}]"
}