Dot bracket notation with double quotes

Setup

Selector: $.["key"]

{
  "key": "value",
  "other": {"key": [{"key": 42}]}
}

Results

Other responses

Bash (JSONPath.sh)

[
  "value"
]

C (json-glib)

Not supported

Unable to compile selector `$.["key"]': Missing member name or wildcard after . character

Cpp (jsoncons)

Not supported

Expected unquoted string, or single or double quoted string, or index or '*' at line 1 and column 3

Dart (json_path)

Not supported

Instance of 'ParserException': end of input expected (at 1:2)

Elixir (ExJsonPath)

Not supported

syntax error before: '['

Elixir (jaxon)

[
  "value"
]

Elixir (warpath) ¹

"value"

Erlang (ejsonpath)

Not supported

syntax error before: '['

Golang (github.com-PaesslerAG-jsonpath) ¹

Not supported

parsing error: $.["key"]	:1:3 - 1:4 unexpected "[" while scanning JSON select expected Ident, "." or "*"

Golang (github.com-bhmj-jsonslice) ¹ ³

"value"

Golang (github.com-ohler55-ojg)

Not supported

Golang (github.com-spyzhov-ajson)

[
  "value"
]

Golang (github.com-vmware-labs-yaml-jsonpath)

Not supported

child name missing at position 2, following "$."

Haskell (jsonpath)

Not supported

Invalid JSONPath: $.["key"]
 Error: 1:3:
  |
1 | $.["key"]
  |   ^
unexpected '['
expecting '.' or white space

JavaScript (Goessner) ²

Not found

jsonpath returned false, this might indicate an error

JavaScript (brunerd)

Not supported

JavaScript (jsonpath)

Not supported

Parse error on line 1:
$.["key"]
--^
Expecting 'STAR', 'IDENTIFIER', 'SCRIPT_EXPRESSION', 'INTEGER', 'END', got '['

JavaScript (jsonpath-plus)

[
  "value",
  [
    {
      "key": 42
    }
  ],
  42
]

JavaScript (jsonpathly)

Not supported

mismatched input '[' expecting {'*', 'true', 'false', 'null', KEY, SPECIAL_KEY, NUMBER}

Java (com.github.jsurfer)

Not supported

line 1:2 no viable alternative at input '.['
org.antlr.v4.runtime.misc.ParseCancellationException

Java (com.jayway.jsonpath) ¹ ³

"value"

Kotlin (com.nfeld.jsonpathkt) ¹

"value"

Objective-C (SMJJSONPath) ¹ ³

"value"

PHP (Goessner) ²

Not found

jsonpath returned false, this might indicate an error

PHP (galbar-jsonpath)

Not supported

Invalid JSONPath error: 'Error in JSONPath near '.["key"]''

PHP (remorhaz-jsonpath)

[
  "value"
]

PHP (softcreatr-jsonpath)

[
  "value"
]

Perl (JSON-Path)

[
  "value"
]

Python (jsonpath) ²

Not found

jsonpath returned false, this might indicate an error

Python (jsonpath-ng)

[
  "value"
]

Python (jsonpath-rw)

[
  "value"
]

Python (jsonpath2)

Not supported

line 1:2 mismatched input '[' expecting {'*', ID}
ValueError("line 1:2 mismatched input '[' expecting {'*', ID}")

Python (python-jsonpath)

[
  "value"
]

Raku (JSON-Path)

Not supported

JSON path parse error at position 1

Ruby (jsonpath)

[
  "value"
]

Rust (jsonpath)

Not supported

parsing error

Rust (jsonpath_lib)

[
  "value"
]

Rust (serde_json_path)

Not supported

at position 2, in dot member name, must start with lowercase alpha or '_'

Scala (jsonpath)

Not supported

JPError(end of input expected)

Swift (Sextant)

[
  "value"
]

dotNET (Json.NET)

Not supported

Unexpected character while parsing path indexer: "

dotNET (JsonCons.JsonPath)

Not supported

Expected unquoted string, or single or double quoted string, or index or '*'

dotNET (JsonPath.Net)

Not supported

Could not find any valid selectors.

dotNET (JsonPathLib)

[]

dotNET (Manatee.Json)

[
  "value"
]

Errors

Clojure (json-path) ¹

java.lang.Exception object must be an array.

Golang (github.com-oliveagle-jsonpath) ¹

strconv.Atoi: parsing "\"key\"": invalid syntax

Rust (jsonpath_plus)

Error Parsing JSON Path:
$.["key"]
panic occurred

Footnotes