I would like to split a very large string (lets say, 10 000 characters) into N-size chunks.
What would be the best way in terms of performance to do this?
For instance: "1234567890" split by 2 would become {"12","34","56","78", "9"}
Would something like this be possible using the string.match and if so, would that be the best way to do it in terms of performance?
Thanks,
tribe84