How to extract string inside a string in python? -
need solution bellow code.
variable = ' "value" '
how variable = 'value'
thanks
try:
variable.replace("\"","").strip()
replace
replaces double quotes nothing (removes it) , strip()
removes trailing , leading spaces
Comments
Post a Comment