Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
If you want to have a value like "078", you have to change this column as String.
Regards,
Pedro
I use :
String.format("%3s", <your field> ).replaceAll(" ", "0")
Hi,
I also have the same doubt and try to get the desired output but get an error (Int cannot be resolved). So, I tried this:
String.format("%3d", Integer.parseInt(<your field>))
and it worked out successfully.