HomeCSharpHow to Fill String with Repeated Characters in C#?

How to Fill String with Repeated Characters in C#?

Here’s a small tip on using the string class better in C# to fill a string with specified repeated characters.

You can use the string class constructor to fill a string that has all the repeated characters .

How to Fill String with Repeated Characters in C#?

For example, assume you want a string with 10 # or * symbols. one of doing this declaring a string like this

string str = “##########”;

The other easy and best way is to use the string class constructor like below

private void Form1_Load(object sender, EventArgs e)
{
     string stringSymbols = new string('#', 10);
     MessageBox.Show(stringSymbols);
}
How to Fill String with Repeated Characters in C#?

Leave a Reply

You May Also Like

This C# program calculates and displays an upper triangular matrix based on user input. Problem Statement: The program takes the...
This C# program serves as a demonstration of bitwise operators, which are fundamental operators used for manipulating individual bits in...
This C# program is designed to interchange or swap the columns of a matrix. A matrix is a two-dimensional array...