Search found 1 match
- 22 Nov 2015 10:14
- Forum: DOS Batch Forum
- Topic: Adding space to line to make it fixed length
- Replies: 1
- Views: 1687
Adding space to line to make it fixed length
I want to make last column width fixed by adding space. suppose I have data lik e 1 aaa abcdefgh 2 bb abcd 3 ccc abcde This should be output into a file like - 1 aaa abcdefgh " 2 bb abcd " 3 ccc abcde " Here I want to make last column data length as 10 characters. I have put " ju...