I need to parse a file which is in the following format:
"General" { "Description" = "Some Text" "Version" = "4" "ProjType" = "1" } "Configurations" { "Mice" { "BuildOutputs" = "BuildProject" "OutputFile" = "output.txt" } "Men" { "BuildOutputs" = "BuildProject" "ChangedSinceLastBuilt" = "True" } }
Does anyone know what file format it is? If this is well known, then libraries can already be created to help disassemble it. It looks like it is JSON, but instead of colons it uses an equal sign, and instead of commas it uses a new line.
source share