I wanted to extract all the "name" values from this:
{"id":"1","name":"simpleword","type":"test"},{"id":"123","name":"f23ÜÜ","type":"prod"}
I was presented with the following solution;
regexp_substr_all(s, 'name":"([^"]*)"', 1, 1, '', 1)
and now I am trying to understand the regex. I understand that the
'name":"([^"]*)"'
part extracts the whole part:
"name":"simpleword",
"name":"f23ÜÜ"
but how is the 1, 1, '', 1
working to extract the values of the name keys only?