0 votes

Hey, I need help converting a string into a dictionary. The text in question is formatted as follows:

{key:value, key2:value, key3:value}

I've tried JSON.parse() on it, but it returns with the error "Expected key"

I've also tried it on:

{key:{key:value, key2:value, key3:value}}

Godot version 3.3.3
in Engine by (33 points)

1 Answer

+1 vote
Best answer

JSON require all strings to be escaped with double quotes. To make it work, your text should be formatted as following:

{ "key": "value", "key2": "value", "key3": "value" }
or
{"key":{"key":"value", "key2":"value", "key3":"value"}}

by (1,650 points)
selected by
Welcome to Godot Engine Q&A, where you can ask questions and receive answers from other members of the community.

Please make sure to read Frequently asked questions and How to use this Q&A? before posting your first questions.
Social login is currently unavailable. If you've previously logged in with a Facebook or GitHub account, use the I forgot my password link in the login box to set a password for your account. If you still can't access your account, send an email to [email protected] with your username.