In the system I work on there is some legacy code that I would love to change, but can't. This code is storing values in a map which looks like the following string:
userId: "929290"; name: "Donnie Darko"; obj : {field1: "field"; field2: "field2"} phone: "666-6666";
Notice that the object map isn't followed by a semicolon, but every other key/value pair is. Is there a way to use Regex in Java and get the first level of this map, so that I could have:
userId: "929290"
obj : {field1: "field"; field2: "field2"}
I only want the first level, I'm not looking to parse out field1 and field2 individually.