Horje
how to remove white spaces from string in c# 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 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
c# remove all whitespaces from string
string trim = Regex.Replace( text, @"s", "" );




Csharp

Related
instantiate a player in photon Code Example instantiate a player in photon Code Example
.net Core Return File like File Server Code Example .net Core Return File like File Server Code Example
instantiate object inside of object Unity Code Example instantiate object inside of object Unity Code Example
convert list to ienumerable Code Example convert list to ienumerable Code Example
c# edit element in list Code Example c# edit element in list Code Example

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