Q:

C# program to perform left padding without using PadLeft() method

belongs to collection: C# Basic Programs | String programs

0

C# program to perform left padding without using PadLeft() method

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program:

The source code to perform left padding without using PadLeft() method is given below. The given program is compiled and executed successfully on Microsoft Visual Studio.

//C# program to perform left padding 
//without using PadLeft() method. 

using System;

class Demo
{
    static string StrPadLeft(string str, char ch, int num)
    {
        string result = "";

        for (int i = 0; i < num; i++)
        {
            result += ch;
        }

        result += str;

        return result;
    }
    static void Main(string[] args)
    {
        string Str      =   "";
        string paddedStr=   "";

        Console.Write("Enter a string: ");
        Str = Console.ReadLine();

        paddedStr=StrPadLeft(Str, '$', 5);
        Console.WriteLine("Padded String: " + paddedStr);
    }
}

Output:

Enter a string: Includehelp
Padded String: $$$$$Includehelp
Press any key to continue . . .

Explanation:

Here, we created two static methods StrPadLeft() and Main(). The StrPadLeft() method is used to pad the string with specified character by a given number of times.

In the Main() method, we read the value of the string and passed to the StrPadLeft() method that returned the left padded string and then finally prints the result on the console screen.

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C# Basic Programs | String programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
C# program to perform the right padding without us... >>
<< C# program to reverse a given string without using...