Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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..

share|improve this question
I means that it doesn't match what I want to match. I guess it's because the { , max_len } matches repeating of the whole group. – Kiril Kirov Jul 2 '11 at 16:09

3 Answers

up vote 1 down vote accepted

The following code splits your string as desired at spaces with a width of 10:

import re
r = "1234,asd dsa qwerty 567,"
p = re.compile("(.{,10})($|\s)")
r = p.sub("\\1\n", r)

In this case it produces output

1234,asd
dsa qwerty
567,

when split with width 5 you get

1234,asd
dsa
qwerty
567,

You can see, that words are never split with this method.

If you like other delimiters just replace "\s" with the desired regular expression.

share|improve this answer
Niiiiice! Thanks! I knew I was kinda close ;p – Kiril Kirov Jul 2 '11 at 16:32
Ha, now I see your edit - yes, I can use [delimiters] here, instead of just \s, I can also use different "new line char", not just \n. Great (: – Kiril Kirov Jul 2 '11 at 16:33
hm, no.. interesting. This splits more than I want. s = "asd asd" will be split, and there's no need. Do you have an idea how to fix this? – Kiril Kirov Jul 2 '11 at 17:05
The way I do it now is - use splitlines, because the string could have more than on line and then iterate through the lines and use this split. Then use ''.join, but this is slow, again. Better idea? – Kiril Kirov Jul 2 '11 at 17:08
@Kiril Kirov You can use "(.{,10})($|\s)" to handle also this case properly. – Howard Jul 2 '11 at 17:22
show 1 more comment
In [1]: import textwrap

In [2]: textwrap.wrap('1234,asd dsa qwerty 567,', 10)
Out[2]: ['1234,asd', 'dsa qwerty', '567,']
share|improve this answer
But this way, if you use 5 as length for splitting, you'll get substrings dsa q and werty which splits the word qwerty – Kiril Kirov Jul 2 '11 at 16:16
1  
if you pass break_long_words=False to textwrap.wrap, it won't break words across lines. – Dan D. Jul 2 '11 at 16:28
@Dan - interesting, I didn't know that. Thanks – Kiril Kirov Jul 2 '11 at 16:33

This answer of mine to another question might be useful.

share|improve this answer
Yes, I thought about something like this, but as I already said, rfind can't be used with [,.;'\s] etc. – Kiril Kirov Jul 2 '11 at 16:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.