vote up 2 vote down star

I have a string that is like below.

,liger, unicorn, snipe

in other languages I'm familiar with I can just do a string.trim(",") but how can I do that in c#?

Thanks.


There's been a lot of back and forth about the StartTrim function. As several have pointed out, the StartTrim doesn't affect the primary variable. However, given the construction of the data vs the question, I'm torn as to which answer to accept. True the question only wants the first character trimmed off not the last (if anny), however, there would never be a "," at the end of the data. So, with that said, I'm going to accept the first answer that that said to use StartTrim assigned to a new variable.

flag

Suggest adding tag ".net", since this isn't language-specific. – Jay Bazuzi Sep 16 '08 at 15:35
85 views 10 answers and NO ONE thinks this question is worth a +1? – Keng Sep 16 '08 at 15:39
@Keng maybe because this kind of stuffs is kind of trivial for C# folks – chakrit Sep 16 '08 at 15:40
isn't that the point?....everything is trivial to someone? – Keng Sep 16 '08 at 15:45

17 Answers

vote up 1 vote down check
string sample = ",liger, unicorn, snipe";
sample = sample.TrimStart(','); // to remove just the first comma

Or perhaps:

sample = sample.Trim().TrimStart(','); // to remove any whitespace and then the first comma
link|flag
vote up 17 vote down
   string s = ",liger, unicorn, snipe";
   s.TrimStart(',');
link|flag
Does that method modifies the string? Shouldn't it be re-assigned back to s ala s = s.TrimStrat('/'); ? – chakrit Sep 16 '08 at 15:38
not sure, but its non-sequitor to the question. – DevelopingChris Sep 16 '08 at 15:39
vote up 4 vote down

.net strings can do Trim() and TrimStart(). Because it takes params, you can write:

",liger, unicorn, snipe".TrimStart(',')

and if you have more than one character to trim, you can write:

",liger, unicorn, snipe".TrimStart(",; ".ToCharArray())
link|flag
wow.. that string to char array is one nice trick I've never saw before. – chakrit Sep 16 '08 at 15:40
vote up 2 vote down

here is an easy way to not produce the leading comma to begin with:

string[] animals = { "liger", "unicorn", "snipe" };
string joined = string.Join(", ", animals);
link|flag
vote up 1 vote down

",liger, unicorn, snipe".Trim(',') -> "liger, unicor, snipe"

link|flag
The question asks to remove the 'leading comma', but Trim() "Removes all leading and trailing occurrences of a set of specified characters from the current String object." msdn.microsoft.com/en-us/library/… – Andrew Sep 17 '08 at 7:18
vote up 1 vote down

Try string.Trim(',') and see if that does what you want.

link|flag
The question asks to remove the 'leading comma', but Trim() "Removes all leading and trailing occurrences of a set of specified characters from the current String object." msdn.microsoft.com/en-us/library/… – Andrew Sep 17 '08 at 7:19
vote up 1 vote down

Note, the original string is left untouched, Trim will return you a new string:

string s1 = ",abc,d";
string s2 = s1.TrimStart(",".ToCharArray());
Console.WriteLine("s1 = {0}", s1);
Console.WriteLine("s2 = {0}", s2);

prints:

s1 = ,abc,d
s2 = abc,d
link|flag
vote up 1 vote down

",liger, unicorn, snipe".TrimStart(',');

link|flag
vote up 1 vote down

string.TrimStart(',') will remove the comma, however you will have trouble with a split operation due to the space after the comma. Best to join just on the single comma or use

Split(", ".ToCharArray(),StringSplitOptions.RemoveEmptyEntries);

link|flag
vote up 1 vote down

string s = ",liger, unicorn, snipe"; s = s.TrimStart(',');

It's important to assign the result of TrimStart to a variable. As it says on the TrimStart page, "This method does not modify the value of the current instance. Instead, it returns a new string...".

In .NET, strings don't change.

link|flag
vote up 0 vote down
if (s.StartsWith(",")) {
    s = s.Substring(1, s.Length - 1);
}
link|flag
vote up 0 vote down
string t = ",liger, unicorn, snipe".TrimStart(new char[] {','});
link|flag
vote up 0 vote down

The same way as everywhere else: string.trim

link|flag
vote up 0 vote down

string s = ",liger, tiger";

    if (s.Substring(0, 1) == ",")
        s = s.Substring(1);
link|flag
just fyi, you can do s.StartsWith(, and not have to actually do all the substring just to get the first character. – DevelopingChris Sep 16 '08 at 15:36
Thanks ChanChan. I often fall back on a small subset of .Net that I "expect" to be there, based on my previous experience with other languages. – Matt Dawdy Sep 17 '08 at 1:12
vote up 0 vote down

Did you mean trim all instances of "," in that string?

In which case, you can do:

s = s.Replace(",", "");
link|flag
He just wants to remove the first comma. – David Smart Sep 16 '08 at 15:37
vote up 0 vote down

Just use Substring to ignore the first character (or assign it to another string);

 string o = ",liger, unicorn, snipe";
 string s = o.Substring(1);
link|flag
vote up 0 vote down

See: http://msdn.microsoft.com/en-us/library/d4tt83f9.aspx

        string animals = ",liger, unicorn, snipe";

        //trimmed will contain "liger, unicorn, snipe"
        string trimmed = word.Trim(',');
link|flag

Your Answer

Get an OpenID
or

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