Answers for "c# remove whitespace and newlines from string"

C#
8

c# remove spaces from string

string str = "This is a test";
str = str.Replace(" ", String.Empty);
// Output: Thisisatest
Posted by: Guest on April-22-2020
6

c# remove spaces from string

using System;
using System.Text.RegularExpressions;

public class Program
{
	public static void Main()
	{
		string yourString = "The value is: 99 086.78";
		string newString = "";	// MUST set the Regex result to a variable for it to take effect
		newString = Regex.Replace(yourString, @"s+", ""); //Replaces all(+) space characters (s) with empty("")
		Console.WriteLine(newString);
		// Output: Thevalueis:99086.78
	}
}
Posted by: Guest on March-06-2020
0

how to remove all whitespace from a string in c#

using System.Linq;

  ... 

  string source = "abc    t defrn789";
  string result = string.Concat(source.Where(c => !char.IsWhiteSpace(c)));

  Console.WriteLine(result);
Posted by: Guest on December-08-2020

Code answers related to "c# remove whitespace and newlines from string"

C# Answers by Framework

Browse Popular Code Answers by Language