Dim source As String = $"{"menu":{"id":"file","value":"File","popup":{"menuitem":[{"value":"New","onclick":"CreateNewDoc()"},{"value":"Open","onclick":"OpenDoc()"},{"value":"Close","onclick":"CloseDoc()"}]}}}"$
Dim m As Matcher = Regex.Matcher2($""\w+":"$, source) ' Find occurances of a word that has quotes around it and is being followed by a colon
Dim match As String
match = m.Match
Log (match.SubString2(1, match.Length -2)) ' Return it without the quotes and the colon