String = 'var1 = hello, var2 = bye'
So i have this string that is being returned from a webpage and im trying to turn this into this:
var1 = 'Hello'
var2 = 'bye'
I was wondering if this could be done using .format or something else.
one of my biggest problem is time, i want the fasted method.