I have a problem.. I need to extract from this field:
exchange<=><br>type<=>full<br>cont<=>part<br>req<=>no<br>money<=>money<br>money<=>3100,4000,0,month<br>boss<=>0
five informations:
full
part
3100
4.4000
5.month
I have tried to use regexp_substr():
regexp_substr(column,'type<=>[^<br>]*')
but I dont have any knowledge about regex and I cant do it in a properly way.. can you help me with that?