Hi xvxt006,
based on the provided example you can use this regex:
base search here | rex max_match=0 "^,(?<myField>[^|]*)" | table myField
This will get everything between all lines starting with , until the next |
Update:
based on the comments below, this is the correct answer
Okay, try this regex it will use shippingResponse= or , which is not followed by a ] as left boundary and the next | as right
(?:shippingResponse=|,)(?!\])(?<myField>[^\|]+)
Works on regex101.com with your provided examples and returns the following matches:
MATCH 1
myField [94-100] `12R071`
MATCH 2
myField [159-165] `12R095`
MATCH 3
myField [224-230] `12R090`
MATCH 4
myField [289-295] `12R078`
Hope this helps ...
cheers, MuS
... View more