vote up 3 vote down star

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()
flag

3 Answers

vote up 12 vote down check

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']
link|flag
This will only work on systems that use '\n' as the line terminator. – Jeremy Michael Cantrell Oct 6 '08 at 14:46
1  
@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
vote up 7 vote down
inputString.splitlines()

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

link|flag
vote up -2 vote down
for line in split(inputString, "\n"):
    doStuff()
link|flag
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

Get an OpenID
or

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