Page 1 of 1

Easytriev compare two files

Posted: Wed Jan 24, 2018 2:34 pm
by deepakmf2011
I have two files as below.

File 1:

FieldA FieldB Field C

ALT 00 00001
ALT 04 00007
CRD 00 00002
CRD 04 00007

File 2:

ALT DL 00005
ALT F 00021
CRD DL 00022
CRD F 00065

Expected O/P:

ALT 00001 00005 | ALT 00007 00021
CRD 00002 00022 | CRD 00007 00065

O/p i got based on my below code:

ALT 00001 00005 | ALT [b]00001[/b] 00021
CRD 00002 00022 | CRD [b]00002[/b] 00065

I could see there is some logic issue, can some one can help me to resolve this issue.