Say you have a string like this: "(hello) (yes) (yo diddly)".
You want a list like this: ["hello", "yes", "yo diddly"]
How would you do this with Python?
|
|
I would do it like this:
First, we cut off the first and last characters (since they should be removed anyway). Next, we split the resulting string using ") (" as the delimiter, giving the desired list. |
|||||||||||||||
|
The pattern matches the parentheses in your string (
gives
UPDATE: Using the non-greedy modifiers, as DSM suggested, makes the pattern probably better to read: |
|||||
|
|
This will give you words from any string :
as D.S.M said.
|
|||||||||
|