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?
|
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?
|
||
|
|
|
|
Use a regular expression:
The
|
||||||||||||
|
|
|
This will also work even if your string does not contain a |
||
|
|
|
|
You don't actually need regular expressions for this. The .index() function and string slicing will work fine. Say we have:
Then:
To me, this is easy to read: "start one character after the [ and finish before the ]". |
||
|
|
|
|
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:
|
||
|
|
|
|
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:
|
||
|
|
str.split uses the entire parameter to split a string. Try:
|
|||
|
|
|
Either
or
or
or
|
||
|
|