Clear Filters
Clear Filters

text alignment while writing to text files

7 views (last 30 days)
hi, i want to write data of a patient to the .txt file but the data is not aligned(columns alignment). i want text to be displayed like in a table:
Date/Time Results Comment
Mon,3/12/10,12:00 127 before meal
tue,4/11/10,12:51 120 after meal
how can i do this? waiting for kind help Thanks

Accepted Answer

Walter Roberson
Walter Roberson on 18 Apr 2011
Compare:
sprintf('%10s%10s', 'hi', 'there')
sprintf('%-10s%-10s', 'hi', 'there')

More Answers (0)

Categories

Find more on Data Type Conversion in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!