I have a long string that I need to parse into an array of strings that do not exceed 40 characters in length. The tricky part of this for me is making sure that the regex finds the last whitespace before 40 characters to make a clean break between strings since I don't want words cut off.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Right-trim the substrings as you go:
The first alternative tries for a clean break, but the other is there as a fallback for blindly chopping if need be. Afterward, the substrings are available in |
||||
|
|
|
This regex should do the job:
(Quotes are for the string literal.) This simply tells the regex parser to do a greedy match of any char between 1 and 40 times (i.e. as many as possible) before it then finds a single space (or the end of the string). |
|||