vote up 1 vote down star

Hi community,

I have a string that has some Environment.Newline in it. I'd like to strip those from the string and instead, replace the Newline with something like a comma.

What would be, in your opinion, the best way to do this using C#.NET 2.0?

Thanks in advance.

flag

6 Answers

vote up 5 vote down check

why not:


string s = "foobar\ngork";
string v = s.Replace(Environment.NewLine,",");
System.Console.WriteLine(v);

link|flag
vote up 0 vote down

The best way is the builtin way: Use string.Replace. Why do you need alternatives?

link|flag
vote up 2 vote down

string sample = "abc" + Environment.NewLine + "def";

string replaced = sample.Replace(Environment.NewLine, ",");

link|flag
vote up 2 vote down

Don't reinvent the wheel - just use myString.Replace(Environment.NewLine, ",")

link|flag
vote up 6 vote down

Like this:

string s = "hello\nworld";
s = s.Replace(Environment.NewLine, ",");
link|flag
vote up 0 vote down

Thanks for the quick answers. I was actually doing that, but thought that perhaps there was a better way. Silly me :)

Anyways, I'm also doing a Remove to remove the final comma.

Again, thanks :)

link|flag

Your Answer

Get an OpenID
or

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