I tried the following code in LINQPad and got the results given below:

List<string> listFromSplit = new List<string>("a, b".Split(",".ToCharArray())).Dump();
listFromSplit.ForEach(delegate(string s) 
{ 
  s.Trim(); 
});
listFromSplit.Dump();

"a" and " b"

so the letter b didn't get the white-space removed as I was expecting...?

Anyone have any ideas

[NOTE: the .Dump() method is an extension menthod in LINQPad that prints out the contents of any object in a nice intelligently formatted way]

link|improve this question

1  
Strings are immutable. – Simucal Feb 25 '09 at 1:19
feedback

7 Answers

up vote 8 down vote accepted

The String.Trim() method returns a string representing the updated string. It does not update the string object itself, but rather creates a new one.

You could do this:

s = s.Trim();

However you cannot update a collection while enumerating through it so you'd want to either fill a new List while enumerating over the existing one or populate the List manually using the string array returned by String.Split.

Filling a new list:

List<string> temp = new List<string>("a, b".Split(",".ToCharArray()));
List<string> listFromSplit = new List<string>();

temp.ForEach(delegate(string s) 
{ 
    listFromSplit.Add(s.Trim()); 
});

listFromSplit.Dump();

Populating Manually:

string[] temp = "a, b".Split(",".ToCharArray());
List<string> listFromSplit = new List<string>();

foreach (string s in temp)
{
    listFromSplit.Add(s.Trim()); 
};

listFromSplit.Dump();
link|improve this answer
or do a for instead of foreach – nabeelfarid Mar 11 '11 at 14:50
feedback

you're just creating a trimmed string, not assigning anything to it.

var s = "  asd   ";
s.Trim();

won't update s, while..

var s = "   asd   ";
s = s.Trim();

will..

var listFromSplit = "a, b".Split(',').Select(s=>s.Trim());

would, i suppose, be how i'd go about it.

link|improve this answer
feedback

Further to the answer posted by Adrian Kuhn you could do the following:

var result = listFromSplit.Select(s => s.Trim());
link|improve this answer
feedback

You are not assigning the trimmed result to anything. This is a classic error, I've only just got out of the habit of making this mistake with string.Replace :)

link|improve this answer
feedback

The string instances are immutable. Anything that seems to modify one, creates a new instance instead.

link|improve this answer
feedback

I have no IDE up and running, but this should get the job done (unless I am wrong):

var result = from each in listFromSplit select each.Trim();
link|improve this answer
feedback

Split on both spaces and commas and remove any empty entries. All nice and trimmed. Assumes that your strings don't contain spaces, though.

List<string> listFromSplit =
     new List<string>( "a , b ".Split( new char[] { ',', ' ' }, StringSplitOptions.RemoveEmptyEntries ));
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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