Hi all.
I Need a Solution split String a String into 40 char chunks.
The String is from a User Input and can be longer (between 1 and 290 Chars), but i Need to Split the String into max 40 char packets which will be padded by spaces to have a readable resulting text.
My First Idea was to Split the whole string by spaces as delimiter and rebuild the new 40 char Packs by Looping over the Split result. But question is, isnt there a smarter way to solve that ?
I Need a Solution split String a String into 40 char chunks.
The String is from a User Input and can be longer (between 1 and 290 Chars), but i Need to Split the String into max 40 char packets which will be padded by spaces to have a readable resulting text.
My First Idea was to Split the whole string by spaces as delimiter and rebuild the new 40 char Packs by Looping over the Split result. But question is, isnt there a smarter way to solve that ?