HomeCSharpReplacing Multiple spaces with single space in C#

Replacing Multiple spaces with single space in C#

Are you looking at an sample demonstrating the usage of the regular expression to replace multiple spaces with single space in C# ? . Below is a sample code that demonstrates how to do it.

Replacing Multiple spaces with single space in C#

var input = "Ginktage  Code";
System.Text.RegularExpressions.Regex regexExpression = new System.Text.RegularExpressions.Regex(@"[ ]{2,}", System.Text.RegularExpressions.RegexOptions.None);
input = regexExpression.Replace(input, @" ");
Console.WriteLine(input);

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