Suppose, I have two files:
file1 having below contents.
message_aaa.wav
test 1 of 1
test Label : aaa
test Sentence : test aaa
test String: test message
Interpretation Score : 567
message_bbb.wav
test 1 of 1
test Label : bbb
test Sentence : test bbb
test String: test bbb
Interpretation Score : 972
Message_ccc.wav
test 1 of 1
test Label : ccc
test Sentence : ccc
test String: test ccc
Interpretation Score : 921
file2 having below contents:
message_aaa.wav
test 1 of 1
test Label : aaa
test Sentence : test aaa
test String: test message
Interpretation Score : 55
message_bbb.wav
test 1 of 1
test Label : bbb
test Sentence : test bbb
test String: test bbb
Interpretation Score : 34
message_ccc.wav
test 1 of 1
test Label : ccc
test Sentence : ccc
test String: test ccc
Interpretation Score : 12
I want to create one CSV/xls file, which will have 3 columns as:
1st column will be name of .wav files from file1
2nd column will be "Interpretation score" from file1
3rd column will be "Interpretation score" from file2
like below.
message_aaa.wav,567,55
message_bbb.wav,972,34
message_ccc.wav,921,12