How can I split text inside a Textbox into a few strings, where each string can only contains exactly 5 characters?
How to avoid splitting a word into 2? for example:
origianal text is: "ONE HUNDRED NINETY"
after spliting:
1st string: "ONE H"
2nd string: "UNDRE"
3rd string: "D NIN"
4th string: "ETY"
can it detect is it's a word, it would not split it into 2? means it will stop at the space before the word, and push the word to next new string?
pls guide thank you
