I want to extract the first_name and second_name strings but with this regex only get the first_name string.
SELECT
SUBSTRING (
'a:2:{i:0;s:14:"first_name";i:1;s:15:"second_name";}',
'\"[^\"]*\" '
) as obs_regex
How do I modify my regex to get first_name second_name as the result?
thanks you


split_part()for that