While developing Talend job using tMap, I am in need of executing zero padding of a field that contains numbers (example: 1542) and is of 20 characters length.
- Will my proposed formula
StringHandling.STR('0',20-(StringHandling.LEN(row1.eno)))+row1.eno
work?
- If not, what would be the best way to do so?