Suppose I had a string:
string str = "1111222233334444";
How can I break this string into chunks of some size?
e.g., breaking this into sizes of 4 would return strings:
"1111"
"2222"
"3333"
"4444"
|
|
|||||||||||||||||||||
|
|
Why not loops? Here's something that would do it quite well:
I don't know how you'd deal with case where the string is not factor of 4, but not saying you're idea is not possible, just wondering the motivation for it if a simple for loop does it very well? Obviously the above could be cleaned and even put in as an extension method. Or as mentioned in comments, you know it's /4 then
|
|||||||||||||
|
|
In a combination of dove+Konstatin's answers...
This will work for all strings that can be split into a whole number of chunks, and will throw an exception otherwise. If you want to support strings of any length you could use the following code:
However, the the OP explicitly stated he doesn't need this; it's somewhat longer and harder to read, slightly slower. In the spirit of KISS and YAGNI, I'd go with the first option: it's probably the most efficient implementation possible, and it's very short, readable, and throws an exception for nonconforming input. |
|||||||||||||||
|
|
Using regular expressions and Linq:
I find this to be more readable, but it's just a personal opinion. It can also be a one-liner : ). |
|||||||||||
|
|
How's this for a one-liner?
With this regex it doesn't matter if the last chunk is less than four characters, because it only ever looks at the characters behind it. I'm sure this isn't the most efficient solution, but I just had to toss it out there. :D |
||||
|
|
|
I recently had to write something that accomplishes this at work, so I thought I would post my solution to this problem. As an added bonus, the functionality of this solution provides a way to split the string in the opposite direction and it does correctly handle unicode characters as previously mentioned by Marvin Pinto above. So, here it is:
Also, here is an image link to the results of running this code: http://i.imgur.com/16Iih.png |
|||||||
|
|
It's not pretty and it's not fast, but it works, it's a one-liner and it's LINQy:
|
|||||||||||
|
|
|
This worked for me. Code based on @dove solution but contains extension method. It covers corner cases and splits string with any char be it number, letter or other symbol.
And unit tests that cover some corner cases
|
|||
|
|
|
|||
|
|
|
This should be much faster and more efficient than using LINQ or other approaches used here.
|
|||
|
|
|
An important tip if the string that is being chunked needs to support all Unicode characters. If the string is to support international characters like
The above string has a Length of 2, because the |
||||
|
|
|
I've slightly build up on João's solution. What I've done differently is in my method you can actually specify whether you want to return the array with remaining characters or whether you want to truncate them if the end characters do not match your required chunk length, I think it's pretty flexible and the code is fairly straight forward:
|
|||
|
|
|
||||
|
|
|
Changed slightly to return parts whose size not equal to chunkSize
|
||||
|
|
|
I can't remember who gave me this, but it works great. I speed tested a number of ways to break Enumerable types into groups. The usage would just be like this...
The extention code would look like this...
|
|||
|
|