I need to split a string by (' ') or (''') but if in the string appears ' ' I want to keep only that space. this are examples of the string:
1 7871.6 LIQ WCT GOR THP ' ' FIELD BHP /
1 7871.6 'LIQ' 'WCT' 'GOR' 'THP' ' ' FIELD BHP /
and I want the output to be:
1
7871.6
LIQ
WCT
GOR
THP
FIELD
BHP
/
Any help would be appreciated