pyhocon
pyhocon copied to clipboard
key containing a dot adds extra quotes
I found that the keys that contain a dot inside double quotes end up including the double quotes in the key string. Here are some examples
{"." = a value} // results in {'"."' : "a value"}
{".key" = a value} // results in {'".key"' : "a value"}
{"a.key" = a value} // results in {'"a.key"' : "a value"}
I need to use a key with a dot inside it, and this won't let me do it. Is there a way to create a key with a dot inside without the additional double quotes?
actually it happens with :
and =
characters too