Extract City Name in Talend -
i have here sample data want put city on separate column. city can defined after comma sign. how can talend. component should use?
here's sample data. on left side input , right should right output.
you can use split function in tmap. use below code in city column change dwetl address field actual column name.
!relational.isnull(row7.dwetl_address)?row7.dwetl_address.split(",")[1]:"default city"
Comments
Post a Comment