I have a column with a long string and I want to extract some matching values from string as column in SQL
I have content column which contains string in below format
workflow:myToPath{|}mypath:/add-products{amp}items[0][id]=AB6C4GBCT34DBBNGTLO{amp}valueid=AB3ESHQY{|}source:Gen:all:GenCard{|}guid:xxxx-xxx-xxxx{|}pascode:ABCD{|}version:14.0.12
I want to extract
valueid
, source
, pascode
, version
as columns from content_column which contains above sample strings
I tried regexp_extract(content_action, 'promoid=\w\w\w\w\w\w\w\w',0)
, but this is returning blank
For reference, you can use the following capture pattern, to evaluate the key and value.
The first group is the key, and the second is the value.