Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I have one colomn for contact number some user did not enter value in that column...
Now i want to replace that value ny DOT '' . ''
Please reply
Thanks
No need to new column, you can change the simple expression in tMap Output
i.e. row1.ColumnName to
row1.ColumnName==null || row1.ColumnName.isEmpty()?".":row1.ColumnName
Using Ternary operator in tMap we can achieve this ,
row1.ColumnName==null || row1.ColumnName.isEmpty()?".":row1.ColumnName
No need to new column, you can change the simple expression in tMap Output
i.e. row1.ColumnName to
row1.ColumnName==null || row1.ColumnName.isEmpty()?".":row1.ColumnName
it's working properly...
Thank you so much..