Hello, everyone.
I have a * .txt file in which there is a column with the product code and another column with the quantity value as below:
Cód. qtd
7513020087041;5.0
879705341017;24.0
11713777;8.0
17565097;2.0
181420;20.0
181421;20.0
But the system to which I export this file does not accept because the code field needs to be formatted with 13 characters, and if it does not have the 13 characters it needs to be filled with blanks as in the example below:
7513200870410;5.0
879075341017_;24.0
11713777_____;8.0
17565097_____;2.0
181420_______;20.0
181421_______;20.0
Note: Read '_' = '' spaces.