Devtools.supstudio.in

Tools/Regex

JSON string

What this is

Useful inside larger JSON-ish extractors. A full JSON parser is still the right tool for documents.

/"([^"\\]|\\.)*"/g
"hello" and "say \"hi\""
'not json'

Open in tester

FAQ

Single quotes?
JSON does not allow them. JavaScript does. Know which language you are in.

Related