The first thing that comes to my mind is to do a bunch of \t's, but that would cause words to be misaligned if any word is longer than any other word by a few characters.
For example, I would like to have something like:
Name Last Name Middle initial
Bob Jones M
Joe ReallyLongLastName T
Instead, by including only "\t"'s in my cout statement I can only manage to get
Name Last Name Middle initial
Bob Jones M
Joe ReallyLongLastName T
or
Name Last Name Middle initial
Bob Jones M
Joe ReallyLongLastName T
What else would I need to do?
EDIT: So I get that I should first count the maximum width of each column I want displayed, and then adding padding spaces accordingly. But how, and with what functions, can I go about doing this? Should I simply count the number of chars in a string and then go from there?
We use I/O manipulators to align the data in columns. The std::setw manipulator sets the width of a column, while std::left and std::right set the alignment of the written value within that column. For example, on line 6, we write the name “John Smith” to a column of width 12 and align it to the left of the column.
Use std::setw
from <iomanip>
e.g.
using std::cout; using std::setw; cout << setw(10) << "This" << setw(10) << "is" << setw(10) << "a" << setw(10) << "test" << '\n';
Output:
This is a test
Use printf()
padding with the minus flag for left-alignement
printf("%-8s%-21s%-7s%-6s\n", "Name", "Last Name", "Middle", "initial"); printf("%-8s%-21s%-7s%-6s\n", "Bob", "Jones", "M", ""); printf("%-8s%-21s%-7s%-6s\n", "Joe", "ReallyLongLastName", "T", "");
Which produces:
Name Last Name Middle initial Bob Jones M Joe ReallyLongLastName T
You should also take into account that different editors/viewers show text with different tab width. So using tabs, text which looks nicely arranged in one viewer may look ugly in another.
If you really want to produce nice arrangement, you could use padding spaces, and you could do two passes on your text: first count the maximum width of each column, then add the right amount of padding spaces to each column. For the latter, you could also use a tailor made printf
call.
Update: Counting the column width basically means counting the length of strings you have in given column. It can be done using string::length()
or strlen()
, depending on whether you are using std::string
or char*
(the former is recommended). Then you just iterate through all the words in that column, compare the max word length you have so far, and if the current word is longer, you set that length to be the new max. If you store your words in an STL container, you can even use the std::max_element
algorithm to do the job for you with a single function call.
For situations like this typically two passes are required: one to discover the max width of each column and another to do the printing. For standard iostreams you can use the width()
routine to have the iostream handle the padding for you automatically.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With