Hi,
I have an input flat file data coming as below and I need to filter data based on first character such as "R" and "S" in talend.
Can anyone please suggest me.
Sample data:
R01
R02
R03
S01
S02
S03
S04
S05
Thanks,
Yugandhar
Hi,
You can achieve your goal in tMap component by using this filter:
row1.newColumn1.startsWith("S")||row1.newColumn1.startsWith("R")
Let us know if it is OK with you.
Best regards
Sabrina