I have a string value that its length is 5000 + characters long , i want to split this into 76 characters long with a new line at the end of each 76 characters. how woudld i do this in c#?
feedback
|
|
If you're writing Base64 data, try writing
This will insert a newline every 76 characters | |||||||
feedback
|
|
A little uglier ... but much faster ;) (this version took 161 ticks... Aric's took 413) I posted my test code on my blog. http://hackersbasement.com/?p=134 (I also found StringBuilder to be much slower than string.Join) http://hackersbasement.com/?p=139 <= updated results
| |||||||||||
feedback
|
|
A side on this, if you want StringBuilder versus string performance the best article is the codeproject one found here. (This doesn't show string size however) In a nutshell, StringBuilder isn't faster until a threshold is met with the string length (or repeated contactenation), which you're well under, so stick the regular string concatenation and String methods. | ||||
|
feedback
|
|
Try this:
EDIT: Apparently, this is the slowest method of all those posted so far. I wonder how it does if you pre-compile the regex:
Also, how does it compare to a straight matching approach?
I've always wondered how expensive those unbounded lookbehinds are. | |||||||||
feedback
|
| |||||||||||
feedback
|
Then to put them back together:
Or you could do this:
| |||||||||
feedback
|
where s would be your input string and len the desired line length (76). | |||||||
feedback
|
|
One more.... (first time through slowish, subsequent runs, similar to the faster times posted above)
Edit: I was curious to see how fast substring was... | ||||
feedback
|
|
The string is 5000 characters... I don't think speed is really of the essence unless you're doing this thousands or maybe even millions of times, especially when the OP didn't even mention speed being important. Premature optimization? I would probably use recursion as it will, in my opinion, lead to the simplest code. This may not be syntatically correct, as I know .NET but not C#.
| |||
feedback
|
|
mostly for the fun of it, here's a different solution implemented as extension method to string: (\r\n used explicitly so will only support that format for newline);
| |||
|
feedback
|
|
In the end, this would be what I would use, I think
by looking at AppendLine under reflector:
For me, speed wise, doing it manually > AppendLine | |||||||||||
feedback
|