Regular Expression: `{\n "uuid": "(?<uuid>[a-f0-9\-]*)",\n},` Test String: ``` { "uuid": "abcd", }, ``` The above does not give correct response, while the following Regular Expression works: ``` { "uuid": "(?<uuid>[a-f0-9\-]*)", }, ```