Horje
c# remove spaces from string Code Example
c# remove spaces from string
string str = "This is a test";
str = str.Replace(" ", String.Empty);
// Output: Thisisatest
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
	}
}
how to remove space between string in c#
string str = "C Sharp";
str = Regex.Replace(str, @"\s", "");
how to remove white spaces from string in c#
using System.Linq;

// ...

string example = "   Hi there!    ";
string trimmed = String.Concat(example.Where(c => !Char.IsWhiteSpace(c)));
// Result: "Hithere!"
Source: kodify.net




Csharp

Related
c# get set value Code Example c# get set value Code Example
message uwp c# Code Example message uwp c# Code Example
readonly vs const c# Code Example readonly vs const c# Code Example
C# Cast double to float Code Example C# Cast double to float Code Example
c# hex to console color Code Example c# hex to console color Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
13