How do I correctly organize output into columns?

前端 未结 5 993
被撕碎了的回忆
被撕碎了的回忆 2020-12-08 04:58

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.<

相关标签:
5条回答
  • 2020-12-08 05:14

    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.

    0 讨论(0)
  • 2020-12-08 05:16

    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
    
    0 讨论(0)
  • 2020-12-08 05:32

    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.

    0 讨论(0)
  • 2020-12-08 05:38

    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
    
    0 讨论(0)
  • 2020-12-08 05:40

    Use string formatting (from stdio) to display each line.

    http://www.cppreference.com/wiki/c/io/printf

    It'll let you set minimum field widths and so it will pad the rest of each field for you.

    0 讨论(0)
提交回复
热议问题