Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Rohitash
Contributor
Contributor

Mapping Two File

Hi Team,

 

There is a new requirement that came up and it's quite tricky.

 

Consider , I have two files File A and File B.

 

File A           File B             Output

---------       -------------        -------------

Col A           Col A             Col A

A                     A                    A

B                     B                   B

C                     #                   C

DD                  ##                 DD

 

which means  Col A value "C" should be matched with "#" and output should be "C"

similarly , means Col A value "DD" should be matched with "##" and output should be "DD".

 

How does matching will perform on this situation?

 

Kindly assist.

Labels (5)
11 Replies
Anonymous
Not applicable

# means it can be any a character or it is always character "#"?
Rohitash
Contributor
Contributor
Author

it will always be "#" character. 

But for each and every row "#" character, will get vary.

 

Please find sample below

 

File A                       File B                      Output

------------                ------------                  --------------

 

Col A                       Col A                         Col A              

=====                   ========               ========

A                                 A                                 A

B                                B                                 B

C                                #                                 C

DD                             ##                               DD

EEE                           ###                             EEE

 

kindly assist.

Rohitash
Contributor
Contributor
Author

It will always be an "#" character?

akumar2301
Specialist II
Specialist II

one way I see is to 

 

1) join two files in column wise (https://community.talend.com/t5/Design-and-Development/Merge-two-files/td-p/98099)

so you out of this step would be 

FileCol1,FileCol2

A,A

B,B

DD,##

C,#

2) now use tMap with expression :

 

FileCol1.equals(FileCol2) ? FileCol1 : (FileCol1.matches(FileCol2.replaceAll("#","."))) ? FileCol1 : "" 

 

 

FileCol1.matches(FileCol2.replaceAll("#",".")) will ideally do a regex match with number of character in FileCol1 and FileCol2. you can implement it in many other ways. there could be syntax error in above expression.

 

Abhishek

PhilHibbs
Creator II
Creator II

I don't understand. How can "C" match "#"? It's "C" so it can't match anything other than "C". And your output is always just the value of File A Column A, so File B seems to be irrelevant anyway.

PhilHibbs
Creator II
Creator II

You need to use .equals() to compare strings, @uganesh 

Rohitash
Contributor
Contributor
Author

Merging is not possible. Because Schema is different.

 

Example : Two Files A and B has different schema. I need to fetch the result set from File B.

Please find the scenario below

 

FILE_A
COL_ACOL_B
AA12
BB34
CC78
DD56

                |

 joining files on the basis of COL_A and COL_B

                |

FILE_B
COL_ACOL_BCOL_C
AA127
BB348
CC##9
##5610

                |

         Results 

                |

OUTPUT
COL_ACOL_BCOL_C
AA127
BB348
CC789
DD5610

 

Considering "##" can be any value with file B. but it should match "##" with "DD and value should be "10".

 

Can you please assist.

 

akumar2301
Specialist II
Specialist II

To append in same file

1) add rownum for both file
2) to innerjoin coming from each file on rownum (with tmap ) and get all coluns from both file at output

When you have all in same file , build your logic accordingly
PhilHibbs
Creator II
Creator II

The way I would do this is with three separate lookups.

 

First lookup on COL_A and COL_B and fill in the COL_C if both match.

 

Second lookup on COL_A with the reference link just containing values where FILE_B.COL_B is ##, and if there is a match then fill in the COL_C value - up to you whether you override any COL_C value from the first lookup or not.

 

Third lookup on COL_B with the reference link containing values where FILE_B.COL_A is ##, and if there is a match then fill in the COL_C value.