vote up 1 vote down star
1

So from this string:

"name[id]"

I need this:

"id"

I used str.split ('[]'), but it didn't work. Does it only take a single delimiter?

flag

56% accept rate

7 Answers

vote up 11 vote down check

Use a regular expression:

import re 
s = "name[id]"
re.find(r"\[(.*?)\]", s).group(1) # = 'id'

str.split() takes a string on which to split input. For instance:

"i,split,on commas".split(',') # = ['i', 'split', 'on commas']

The re module also allows you to split by regular expression, which can be very useful, and I think is what you meant to do.

import re
s = "name[id]"

# split by either a '[' or a ']'
re.split('\[|\]', s) # = ['name', 'id', '']
link|flag
1  
In all the time I've spent on SO, this is the first question where I thought "Use a regex!" instead of "Oh my good, don't use a regex for THIS!" :) – Torsten Marek Feb 5 at 0:44
Still no need for a regex. All that punctuation offends my eyes! – bobince Feb 5 at 0:46
Haha - I thought the same exact thing @Torsten – Triptych Feb 5 at 0:51
+1 for use a regex! – epochwolf Feb 5 at 0:57
This shouldn't be using a lazy dot. Try r"\[([^][]+)\]" instead to reduce backtracking. (Yes, it looks weird, but it works.) It probably won't matter much on such short strings, but the lazy dot is a bad habit. – Ben Blank Feb 13 at 0:25
vote up 0 vote down
def between_brackets(text):
    return text.partition('[')[2].partition(']')[0]

This will also work even if your string does not contain a […] construct, and it assumes an implied ] at the end in the case you have only a [ somewhere in the string.

link|flag
vote up 0 vote down

You don't actually need regular expressions for this. The .index() function and string slicing will work fine.

Say we have:

>>> s = 'name[id]'

Then:

>>> s[s.index('[')+1:s.index(']')]
'id'

To me, this is easy to read: "start one character after the [ and finish before the ]".

link|flag
vote up 0 vote down

I'm not a fan of regex, but in cases like it often provides the best solution.

Triptych already recommended this, but I'd like to point out that the ?P<> group assignment can be used to assign a match to a dictionary key:

>>> m = re.match(r'.*\[(?P<id>\w+)\]', 'name[id]')
>>> result_dict = m.groupdict()
>>> result_dict
{'id': 'id'}
>>>
link|flag
vote up 3 vote down

Yes, the delimiter is the whole string argument passed to split. So your example would only split a string like 'name[]id[]'.

Try eg. something like:

'name[id]'.split('[', 1)[-1].split(']', 1)[0]

'name[id]'.split('[', 1)[-1].rstrip(']')
link|flag
Nice! Now write one for "matrix[0][1][2]" – Triptych Feb 5 at 0:54
heh! [subscript.rstrip(']') for subscript in 'matrix[0][1][2]'.split('[')[1:]]. Next! ;-) – bobince Feb 5 at 2:43
vote up -1 vote down

str.split uses the entire parameter to split a string. Try:

str.split("[")[1].split("]")[0]
link|flag
Wrong - str.split takes a string of any length – Triptych Feb 5 at 0:50
vote up 2 vote down

Either

"name[id]".split('[')[:-1] == "id"

or

"name[id]".split('[')[1].split(']')[0] == "id"

or

re.search(r'\[(.*?)\]',"name[id]").group(1) == "id"

or

re.split(r'[\[\]]',"name[id]")[1] == "id"
link|flag

Your Answer

Get an OpenID
or

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