I'm pretty sure that there's such question..
Here's the issue - I want to split a string, using some specified chars as delimiters, but I also want the substrings to have length, close to the specified.
Real world example - split long subtitles lines.
Example:
1234,asd dsa qwerty 567,
I want to split the line to a number of lines with max length, let's say 10, but I don't want to "split" words. So, this should become:
1234,asd
dsa qwerty
567,
Of course, I can split the lines by delimiters and then concatenate them again, till I reach the desired length, but this will be terribly slow.
I thought about using str.find (and use the returned position) but it can't work with regex (because of the different delimiters - ., ,, ;, \n, , etc.).
I think about re.findall, but I can't think of an regex. I thought something about something like
(.*){, max_len}\s
with re.S, but it's obviously not working. There should be some tricky way..
{ , max_len }matches repeating of the whole group. – Kiril Kirov Jul 2 '11 at 16:09