I'm curently working on a college project. I'm trying to create a regex expression to return the values from a JSON. Example:
JSON expression: [{"id": "120","name": "Mary","gender": "feminine"}]
wished output: 120 Mary feminine
I tried this solution \w\b\w+\b(?z!\id|name|gender)
but without any success.