Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a long string.

string s1 = "'99024','99050','99070','99143','99173','99191','99201','99202','99203','99204','99211','99212','99213','99214','99215','99217','99218','99219','99221','99222','99231','99232','99238','99239','99356','99357','99371','99374','99381','99382','99383','99384','99385','99386','99391','99392'";

I want

string s2 = 
            "'99024',
             '99050',
             '99070',
             '99143',
             '99173',
             '99191',
             '99201',
             '99202',....";

In other words. Maybe it likes:

string s2 = "'99024',"+'\n'+"'99050',"+'\n'+"'99070',"+'\n'+"'99143',"+'\n'+.....;

I need a concise code. Maybe LINQ. Thanks.

share|improve this question

5 Answers

up vote 11 down vote accepted
string s2 = s1.Replace(",", ",\n");
share|improve this answer
You'll probably want s1.Replace(",", ",\n").TrimEnd(',', '\n'); to remove the trailing pair. – blowdart Apr 10 '12 at 20:42
I know, just to be fast, post without testing :) – L.B Apr 10 '12 at 20:42
@blowdart You assume their's a trailing comma. There isn't. – Servy Apr 10 '12 at 20:42
1  
@L.B You assume he's writing to a file. You can't know that for sure. He could be printing to the Console, or only dealing with the strings in memory. The OP used \n, not Environment.NewLine, so there would need to be some compelling reason to change it, which isn't there. – Servy Apr 10 '12 at 21:18
1  
@Servy I think, an answer that would fit to a tweet and known by 99.99% of .Net developers should be as general as possible (think mono & unix). – L.B Apr 10 '12 at 21:45
show 5 more comments
string s2 = s1.Replace(",", "," + Environment.NewLine);

Also, just from a performance perspective, here's how the three current solutions I've seen stack up over 100k iterations:

ReplaceWithConstant           - Ms: 328, Ticks: 810908
ReplaceWithEnvironmentNewLine - Ms: 310, Ticks: 766955 
SplitJoin                     - Ms: 483, Ticks: 1192545

ReplaceWithConstant:

string s2 = s1.Replace(",", ",\n");

ReplaceWithEnvironmentNewLine:

string s2 = s1.Replace(",", "," + Environment.NewLine);

SplitJoin:

string s2 = String.Join("," + Environment.NewLine, s1.Split(','));

ReplaceWithEnvironmentNewLine and ReplaceWithConstant are within the margin of error of each other, so there's functionally no difference.

Using Environment.NewLine should be preferred over "\n" for the sake readability and consistency similar to using String.Empty instead of "".

share|improve this answer
I think no one tests his code. it's not replace – L.B Apr 10 '12 at 20:41
@L.B I usually post then test since unfortunately response time is critical. Caught the error in LinqPad a few seconds after posting. – Dan Rigby Apr 10 '12 at 20:42
See my comment in other answer :) – L.B Apr 10 '12 at 20:43
string s2 = s1.Replace(",", ",\n") + ",....";
share|improve this answer

Another option:

string s2 = String.Join("," + Environment.NewLine, s1.Split(','));
share|improve this answer

Environment.NewLine should be used as Dan Rigby said but there is one problem with the String.Empty. It will remain always empty no matter if it is read before or after it reads. I had a problem in my project yesterday with that. I removed it and it worked the way it was supposed to. It's better to declare the variable and then call it when it's needed. String.Empty will always keep it empty unless the variable needs to be initialized which only then should you use String.Empty. Thought I would throw this tid-bit out for everyone as I've experienced it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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