I have a column that has strings of option lists, and I would like to extract only one option "COLOR=" ,between the comma & " "(space), from them. These option lists sometimes include different language letter so It must extract english only.
Here we have four examples of the string that shows the pattern.
- COLOR=WHITE 화이트, DETAIL=NONE
- SLEEVE=SHORT 쇼트, COLOR=SKY BLUE
- SLEEVE=LONG, COLOR=GRAY, TOP=DOUBLE
- COLOR=LIGHT YELLOW 밝은 노랑
=>>>> I would like to see >>>>
- COLOR=WHITE
- COLOR=SKY BLUE
- COLOR=GRAY
- COLOR=LIGHT YELLOW
I tried REGEX-EXTRACT({option column},"COLOR=oa-zA-Z]+.*"a-zA-Z]+)"
but obviously it includes after comma as well. something with '*,+' was recommended but do not know how to combine these..
Thanks for the help in advanced!