Padding Strings in C#

Padding Strings

ThePadLeft and PadRight methods can be used to pad strings. The PadLeft method right-aligns and pads a string so that its rightmost character isthe specified distance from the beginning of the string. The PadRight method left-aligns and pads a string so that its rightmost character is aspecified distance from the end of the string. These methods return newString objects that can either be padded with empty spaces or with custom characters. Listign 3 shows how to use these methods.

Listing 3: Using padding methods

string str1 = "My String";
Console.WriteLine(str1.PadLeft(20, '-'));
string
str2 = "My String";
Console.WriteLine(str2.PadRight(20, '-'));

The output of Listing 3 is shown in Figure 2.

Padd1.gif

Figure 2.



Read C# Strings  to learn more about strings in C#.

Up Next
    Ebook Download
    View all
    Learn
    View all