Peter Chao
Peter Chao

Reputation: 443

python split string that by space and new line character

I have this code:

f1=open('test.txt','r')
d={}
line = f1.read().replace('\n',' ')
line2= line.split("\n")

line = "This is line1\nthis isline2\nthis is line3"

My question is: can I do a split with multiple delimiters rather than replace first, then do a split?

Upvotes: 4

Views: 3020

Answers (1)

heemayl
heemayl

Reputation: 42127

Use re.split().

Splitting on \n and \t:

In [23]: line = "This is line1\nthis isline2\tthis is line3"

In [24]: re.split(r'[\n\t]', line)
Out[24]: ['This is line1', 'this isline2', 'this is line3']

Upvotes: 5

Related Questions