As the title says, I've got a string, and I want to split into segments n characters long.
For example:
var str = 'abcdefghijkl';
after some magic with n=3, will become
var arr = ['abc','def','ghi','jkl'];
Is there an elegant way to do this?
|
As the title says, I've got a string, and I want to split into segments n characters long. For example:
after some magic with n=3, will become
Is there an elegant way to do this? |
|||
|
|
Note: Use
A couple more subtleties:
So you may end up with:
|
|||||||||||||||||
|
|
If you didn't want to use a regular expression...
...otherwise the regex solution is pretty good :) |
|||||||
|