re.compile().split(): why it produces empty string as a first elementof the list

A

alf

Fredrik said:
alf said:
Let's run following:
re.compile('(\[.*?\])').split('[aa]bb[11]22')
['', '[aa]', 'bb', '[11]', '22']

Why does it return '' as a first element of the list?


because the string starts with a separator.

</F>
so is it safe to say that the index of separator in the list is always
an odd number?
 
L

Lawrence D'Oliveiro

Fredrik said:
alf said:
Let's run following:

re.compile('(\[.*?\])').split('[aa]bb[11]22')
['', '[aa]', 'bb', '[11]', '22']

Why does it return '' as a first element of the list?


because the string starts with a separator.

</F>
so is it safe to say that the index of separator in the list is always
an odd number?

Hard to see why not.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,434
Messages
2,571,691
Members
48,796
Latest member
Greg L.

Latest Threads

Top