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

I have a multi-line string literal that I want to do an operation on each line, like so.

inputString = """Line 1
Line 2
Line 3"""

I want to do something like the following.

for line in inputString:
    doStuff()
share|improve this question

3 Answers

up vote 62 down vote accepted

Like the others said:

inputString.split('\n')  # --> ['Line 1', 'Line 2', 'Line 3']

This is identical to the above, but the string module's functions are deprecated and should be avoided:

import string
string.split(inputString, '\n')  # --> ['Line 1', 'Line 2', 'Line 3']

Alternatively, if you want each line to include the break sequence (CR,LF,CRLF), use the splitlines method with a True argument:

inputString.splitlines(True)  # --> ['Line 1\n', 'Line 2\n', 'Line 3']
share|improve this answer
3  
This will only work on systems that use '\n' as the line terminator. – Jeremy Cantrell Oct 6 '08 at 14:46
3  
@Jeremy: Triple-quoted string literals always use a '\n' EOL, regardless of platform. So do files read in text mode. – efotinis Oct 6 '08 at 16:55
inputString.splitlines()

Will give you an array with each item, the splilines() function is designed to split each line into an array element.

share|improve this answer
for line in split(inputString, "\n"):
    doStuff()
share|improve this answer
Now, which way is correct, inputString.split(char) or split(inputString, char)? – bradtgmurray Oct 5 '08 at 18:56
Simon's split() comes from the String module and is deprecated. It's better to use the string object's method (inputString.split). – efotinis Oct 5 '08 at 19:01
Plus the OO (inputString.split()) is easier to read. – UnkwnTech Oct 5 '08 at 19:06

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.