Hello All,
I have a file which appears as follows
a,alpha,abc-xyz,123
b,beta,prq-jkl,543
c,gamma,xyz-mno,957
I have to extract the entire content, except for the data following "-" in the third column. Output should appear as follows.
a,alpha,abc,123
b,beta,prq,543
c,gamma,xyz,957
Could someone please suggest as to how it can be done?