vote up 6 vote down star
1

I have some code in a python string that contains extraneous empty lines. I would like to remove all empty lines from the string. What's the most pythonic way to do this?

Note: I'm not looking for a general code re-formatter, just a quick one or two-liner.

Thanks!

flag
Please resolve the ambiguities. What is the set of line terminators? Does "empty" mean "contains no characters" or "contains only whitespace"? – John Machin Jul 17 at 11:52
Good point! For my purposes, the lines were all strictly empty (no white space), and the line terminators were all \n. However, future visitors searching for this will probably want the more general version that strips out lines even if they have white space, and can handle any line ending style. – Drew Wagner Jul 18 at 14:18

6 Answers

vote up 15 vote down check

How about:

text = os.linesep.join([s for s in text.splitlines() if s])

where text is the string with the possible extraneous lines?

link|flag
2  
+1 to this for the use of splitlines(), which handles platform differences in line endings. Is there a benefit, though, to "if len(s)" as opposed to simply "if s"? – Jarret Hardie Jul 17 at 0:33
Not that I know of. Just slipped my mind that Python treats empty strings as false. I just removed it. – Lawrence Johnston Jul 17 at 0:34
len('\r\n') == 2 :) it's trickier than we expected – wuub Jul 17 at 0:46
3  
Use "if s.strip()" to treat whitespace as an "empty" line. – bpowah Jul 17 at 2:11
1  
text = os.linesep.join([s for s in text.splitlines() if s]) will handle platform differences in a better way – luc Jul 17 at 7:58
show 3 more comments
vote up 0 vote down

And now for something completely different:

Python 1.5.2 (#0, Apr 13 1999, 10:51:12) [MSC 32 bit (Intel)] on win32
Copyright 1991-1995 Stichting Mathematisch Centrum, Amsterdam
>>> import string, re
>>> tidy = lambda s: string.join(filter(string.strip, re.split(r'[\r\n]+', s)), '\n')
>>> tidy('\r\n   \n\ra\n\n   b   \r\rc\n\n')
'a\012   b   \012c'

Episode 2:

This one doesn't work on 1.5 :-(

BUT not only does it handle universal newlines and blank lines, it also removes trailing whitespace (good idea when tidying up code lines IMHO) AND does a repair job if the last meaningful line is not terminated.

import re
tidy = lambda c: re.sub(
    r'(^\s*[\r\n]+|^\s*\Z)|(\s*\Z|\s*[\r\n]+)',
    lambda m: '\n' if m.lastindex == 2 else '',
    c)
link|flag
vote up 1 vote down
filter(None, code.splitlines())
filter(str.strip, code.splitlines())

are equivalent to

[s for s in code.splitlines() if s]
[s for s in code.splitlines() if s.strip()]

and might be useful for readability

link|flag
vote up 0 vote down

Suprised there's no love for the standard string replace method. But maybe it doesn't qualify as a one-liner, since it's just a plain old method call.

>>> manylines = 'hello\nworld\n!'
>>> print manylines
hello
world
!

>>> no_linefeeds = manylines.replace('\n', '')
>>> print no_linefeeds
helloworld!
link|flag
1  
Question wasn't to remove linefeeds, but to remove blank lines. ie: "\n\n", not "\n". – nilamo Jul 17 at 7:53
vote up 1 vote down

This one will remove lines of spaces too.

re.replace(u'(?imu)^\s*\n', u'', code)

link|flag
vote up 5 vote down
"\n".join([s for s in code.split("\n") if s])

Edit2:

text = "".join([s for s in code.splitlines(True) if s.strip("\r\n")])

I think that's my final version. It should work well even with code mixing line endings. I don't think that line with spaces should be considered empty, but if so then simple s.strip() will do instead.

link|flag

Your Answer

Get an OpenID
or

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