Tagged Questions
8
votes
5answers
2k views
Best way to split string into lines
How do you split multi-line string into lines?
I know this way
var result = input.Split("\n\r".ToCharArray(), StringSplitOptions.RemoveEmptyEntries);
looks a bit ugly to me and it looses empty ...
5
votes
8answers
788 views
Best syntax to create multi-line string
What's the best way to create multi-line string in C#?
I know the following methods:
Using StringBuilder
var result = new StringBuilder().AppendLine("one").AppenLine("two").ToString()
looks too ...
2
votes
5answers
479 views
new line in a multi-line string
Trying to override a tostring in one of my classes.
return string.Format(@" name = {0}
ID = {1}
sec nr = {2}
acc nr = {3}", ...
2
votes
4answers
2k views
What's the simplest way to return the first line of a multi-line string in Perl?
When I say simple, I mean, within an expression, so that I can stick it in as a value in a hash without preparing it first. I'll post my solution but I'm looking for a better one that reminds me less ...