vote up 1 vote down star

To add a whitespace seperator in a string we use String.Join().

My question:What(and how) do I have to remove that seperator.

The string's structure is the following "FF FF FF FF FF FF FF FF FF...."

How do I remove the white spaces?

flag

1  
Are you controlling the code that builds the string? I ask because the easiet way would of course be not to add it in the first place: String.Join("", values) – Lasse V. Karlsen Apr 25 at 18:28

2 Answers

vote up 5 vote down check

C# Has a function for it.

Function is String.Replace(oldstring, newString);

String.Replace(" ", "");
link|flag
A slightly more readable version would be: String.Replace(" ", string.Empty); In the end, its the same. – phsr Apr 25 at 18:34
3  
remember that the string functions leave the original string untouched. So you need i.e. var s = "FF FF FF FF"; var s = s.Replace(" ", ""); (if I remember correctly). Even though I know this, I have forgotten it many times and wondered why my string didn't change, etc. :p – Svish Apr 25 at 18:38
vote up 1 vote down

I don't think you need to use LINQ for this. Just split on whitespace and then re-join using an empty string as the separator. This would be best if you had mixed whitespace -- tabs, newlines, etc.

var newStr = string.Join( string.Empty, str.Split() );

or replace the whitespace with the empty string (this would be the best if all the whitespace where the same character).

var newStr = string.Replace( " ", string.Empty );
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.