如何使用Console.WriteLine对齐列中的文本?


78

我有一种列显示,但末两列似乎未正确对齐。这是我目前的代码:

Console.WriteLine("Customer name    " 
    + "sales          " 
    + "fee to be paid    " 
    + "70% value       " 
    + "30% value");
for (int DisplayPos = 0; DisplayPos < LineNum; DisplayPos = DisplayPos + 1)
{
    seventy_percent_value = ((fee_payable[DisplayPos] / 10.0) * 7);
    thirty_percent_value = ((fee_payable[DisplayPos] / 10.0) * 3);          
    Console.WriteLine(customer[DisplayPos] + "         " 
        + sales_figures[DisplayPos] + "               " 
        + fee_payable[DisplayPos] + "           " 
        + seventy_percent_value + "           " 
        + thirty_percent_value);
}

我是新手程序员,所以我可能不明白所提供的所有建议,但是如果您有任何建议,将不胜感激!


1
有关此问题的更一般化版本,请参见此处。那里的答案也值得一试。
亚当·格拉瑟

Answers:


13

您应该尝试将实际的制表符(\t转义序列)嵌入每个输出字符串中,而不是尝试将文本手动对齐到带有任意空格的列中:

Console.WriteLine("Customer name" + "\t"
    + "sales" + "\t" 
    + "fee to be paid" + "\t" 
    + "70% value" + "\t" 
    + "30% value");
for (int DisplayPos = 0; DisplayPos < LineNum; DisplayPos++)
{
    seventy_percent_value = ((fee_payable[DisplayPos] / 10.0) * 7);
    thirty_percent_value = ((fee_payable[DisplayPos] / 10.0) * 3);          
    Console.WriteLine(customer[DisplayPos] + "\t" 
        + sales_figures[DisplayPos] + "\t" 
        + fee_payable + "\t\t"
        + seventy_percent_value + "\t\t" 
        + thirty_percent_value);
}

37
只有您的数据长度都差不多时,制表符才能很好地工作。如果数据长度不同,则应使用royas答案和格式字符串。
蒂姆(Tim)

3
是的,他的答案更好。我一看到它就对其进行了投票,但是为了更简单的方法会更有效,我离开了我。我不确定为什么会接受我的,但... :-)
科迪·格雷

1
并且不要忘记string.PadRight()和string.PadLeft()
nhershy

如果您尝试使用可变的字体宽度对齐文本,royas的答案将无济于事。我认为您需要将填充与选项卡结合使用,例如此答案
肖恩

315

试试这个

Console.WriteLine("{0,10}{1,10}{2,10}{3,10}{4,10}",
  customer[DisplayPos],
  sales_figures[DisplayPos],
  fee_payable[DisplayPos], 
  seventy_percent_value,
  thirty_percent_value);

其中大括号内的第一个数字是索引,第二个是对齐方式。第二个数字的符号指示该字符串应左对齐还是右对齐。将负数用于左对齐。

或查看 http://msdn.microsoft.com/en-us/library/aa331875(v=vs.71).aspx


18
实际上,您不需要传递string.format方法。换句话说,这将是同一件事:Console.WriteLine("{0,10}{1,10}{2,10}{3,10}{4,10}", customer[DisplayPos], sales_figures[DisplayPos], fee_payable[DisplayPos], seventy_percent_value, thirty_percent_value);
Tono Nam

62

只是为了增加roya的答案。在c#6.0中,您现在可以使用字符串插值:

Console.WriteLine($"{customer[DisplayPos],10}" +
                  $"{salesFigures[DisplayPos],10}" +
                  $"{feePayable[DisplayPos],10}" +
                  $"{seventyPercentValue,10}" +
                  $"{thirtyPercentValue,10}");

实际上,这可能是一行,而没有所有多余的钱,我只是认为这样使阅读起来容易一些。

您还可以在System.Console上使用静态导入,从而可以执行以下操作:

using static System.Console;

WriteLine(/* write stuff */);

4
msdn.microsoft.com/zh-cn/library/txafckwd(v=vs.110).aspx 包含有关“对齐”的文档。很有帮助!
Frison Alexander

4
要使其左对齐,则只需使用一个负数,例如:$"{thirtyPercentValue,-10}"
stomtech

7

我知道线程很旧,但是当周围有更长的字符串时,提出的解决方案不是全自动的。

因此,我创建了一个小型助手方法,该方法可以完全自动化。只需传入一个字符串数组列表,其中每个数组代表一行,数组中的每个元素以及该行的一个元素。

该方法可以像这样使用:

var lines = new List<string[]>();
lines.Add(new[] { "What", "Before", "After"});
lines.Add(new[] { "Name:", name1, name2});
lines.Add(new[] { "City:", city1, city2});
lines.Add(new[] { "Zip:", zip1, zip2});
lines.Add(new[] { "Street:", street1, street2});
var output = ConsoleUtility.PadElementsInLines(lines, 3);

辅助方法如下:

public static class ConsoleUtility
{
    /// <summary>
    /// Converts a List of string arrays to a string where each element in each line is correctly padded.
    /// Make sure that each array contains the same amount of elements!
    /// - Example without:
    /// Title Name Street
    /// Mr. Roman Sesamstreet
    /// Mrs. Claudia Abbey Road
    /// - Example with:
    /// Title   Name      Street
    /// Mr.     Roman     Sesamstreet
    /// Mrs.    Claudia   Abbey Road
    /// <param name="lines">List lines, where each line is an array of elements for that line.</param>
    /// <param name="padding">Additional padding between each element (default = 1)</param>
    /// </summary>
    public static string PadElementsInLines(List<string[]> lines, int padding = 1)
    {
        // Calculate maximum numbers for each element accross all lines
        var numElements = lines[0].Length;
        var maxValues = new int[numElements];
        for (int i = 0; i < numElements; i++)
        {
            maxValues[i] = lines.Max(x => x[i].Length) + padding;
        }
        var sb = new StringBuilder();
        // Build the output
        bool isFirst = true;
        foreach (var line in lines)
        {
            if (!isFirst)
            {
                sb.AppendLine();
            }
            isFirst = false;
            for (int i = 0; i < line.Length; i++)
            {
                var value = line[i];
                // Append the value with padding of the maximum length of any value for this element
                sb.Append(value.PadRight(maxValues[i]));
            }
        }
        return sb.ToString();
    }
}

希望这对某人有帮助。来源来自我博客中的帖子:http : //dev.flauschig.ch/wordpress/?p=387


这是最准确的答案。尽管如此,我仍改进了最后一行的方法,该方法并不总是声明所有行: pastebin.com/CVkavHgy
David Diez

如果使用Console.Write打印“输出”,则可以删除该isFirst部分。只需sb.AppendLine();在foreach的末尾执行。
tomwaitforitmy

2

您可以使用制表符代替列之间的空格,和/或以格式字符串设置列的最大大小...


2

有几个可以帮助格式化的NuGet软件包。在某些情况下,的功能string.Format已足够,但是您可能至少要根据内容自动调整列的大小。

ConsoleTableExt

ConsoleTableExt是一个简单的库,允许格式化表格,包括不带网格线的表格。(一个更流行的软件包ConsoleTables似乎不支持无边界表。)下面是一个示例,该示例使用列的大小根据其内容来格式化对象的列表:

ConsoleTableBuilder
    .From(orders
        .Select(o => new object[] {
            o.CustomerName,
            o.Sales,
            o.Fee,
            o.Value70,
            o.Value30
        })
        .ToList())
    .WithColumn(
        "Customer",
        "Sales",
        "Fee",
        "70% value",
        "30% value")
    .WithFormat(ConsoleTableBuilderFormat.Minimal)
    .WithOptions(new ConsoleTableBuilderOption { DividerString = "" })
    .ExportAndWriteLine();

CsConsoleFormat

如果您还需要更多功能,则可以使用CsConsoleFormat来实现任何控制台格式。†例如,此处将对象列表的格式设置为固定列宽为10的网格,就像在其他答案中使用的那样string.Format

ConsoleRenderer.RenderDocument(
    new Document { Color = ConsoleColor.Gray }
        .AddChildren(
            new Grid { Stroke = LineThickness.None }
                .AddColumns(10, 10, 10, 10, 10)
                .AddChildren(
                    new Div("Customer"),
                    new Div("Sales"),
                    new Div("Fee"),
                    new Div("70% value"),
                    new Div("30% value"),
                    orders.Select(o => new object[] {
                        new Div().AddChildren(o.CustomerName),
                        new Div().AddChildren(o.Sales),
                        new Div().AddChildren(o.Fee),
                        new Div().AddChildren(o.Value70),
                        new Div().AddChildren(o.Value30)
                    })
                )
        ));

它看起来可能比pure更复杂string.Format,但是现在可以对其进行自定义。例如:

  • 如果要根据内容自动调整列的大小,请替换AddColumns(10, 10, 10, 10, 10)AddColumns(-1, -1, -1, -1, -1)-1是的快捷方式GridLength.Auto,您可以使用更多调整大小的选项,包括控制台窗口宽度的百分比)。

  • 如果要在右侧对齐数字列,请添加{ Align = Right }到单元格的初始化程序。

  • 如果要为列着色,请添加{ Color = Yellow }到单元格的初始化程序。

  • 您可以更改边框样式等。

†CsConsoleFormat由我开发。


1

我真的很喜欢这里提到的那些库,但是我的想法比填充或进行大量字符串操作要简单得多,

您可以使用数据的最大字符串长度来手动设置光标。这是一些获得想法的代码(未经测试):

var column1[] = {"test", "longer test", "etc"}
var column2[] = {"data", "more data", "etc"}
var offset = strings.OrderByDescending(s => s.Length).First().Length;
for (var i = 0; i < column.Length; i++) {
    Console.Write(column[i]);
    Console.CursorLeft = offset + 1;
    Console.WriteLine(column2[i]);
}

如果您有更多行,则可以轻松推断。


0

做一些填充,即

          public static void prn(string fname, string fvalue)
            {
                string outstring = fname.PadRight(20)  +"\t\t  " + fvalue;
                Console.WriteLine(outstring);

            }

至少对我来说,这很好。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.