I have the following string:
str1 = "I am doing 'very well' for your info"
and I want to extract the part between the single quotes i.e. very well
How am I supposed to set my regular expression?
I tried the following but obviously it will give wrong result
import re
pt = re.compile(r'\'*\'')
m = pt.findall(str1)
Thanks