I want to extract information from user-inputted text. Imagine I input the following:
SetVariables "a" "b" "c"
How would I extract information between the first set of quotations? Then the second? Then the third?
|
I want to extract information from user-inputted text. Imagine I input the following:
How would I extract information between the first set of quotations? Then the second? Then the third? |
|||
|
|
|
|||
|
|
|
You could do a string.split() on it. If the string is formatted properly with the quotation marks (i.e. even number of quotation marks), every odd value in the list will contain an element that is between quotation marks.
This is also a faster approach than regular expressions. With the timeit module, the speed of this code is around 4 times faster:
|
||||
|
|
|
Regular expressions are good at this:
|
||||
|
|