D
Dave A
Hi,
I have txt file with many lines of text with variable length of data.
The information of interest is literally contained with quotation marks
within a string.
I wish to;
a) Extract all text within the string in quotation marks and convert to
columns
b) Ignore any quotation marks that have null information
c) Ignore any repeats.
Example below
g.l="0",B="1234"&"1234"&"1234",B="",NAM="FISH"&"CHIPS",U=,NBR="3";
outcome
Col A Col B Col C Col D Col E
0 1234 FISH CHIPS 3
Cheers
Dave
I have txt file with many lines of text with variable length of data.
The information of interest is literally contained with quotation marks
within a string.
I wish to;
a) Extract all text within the string in quotation marks and convert to
columns
b) Ignore any quotation marks that have null information
c) Ignore any repeats.
Example below
g.l="0",B="1234"&"1234"&"1234",B="",NAM="FISH"&"CHIPS",U=,NBR="3";
outcome
Col A Col B Col C Col D Col E
0 1234 FISH CHIPS 3
Cheers
Dave