How can I align text to be left-justified using fprintf?

While using fprintf I would get text that aligns at the end of the word by default. I need it to be able to align at the beginning or left hand side of the word. Thanks.

Answers (1)

>> fprintf('%10s\n','abcdef')
abcdef
>> fprintf('%-10s\n','abcdef')
abcdef
>>
doc fprintf
read up on format string in the links thereto...

Asked:

on 2 Apr 2014

Commented:

on 2 Apr 2014

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!