I have this string something='http://example.com/something' and how can I replace the something=' with nothing?
when I do str.replace('something='','') I got syntax error. I tried str.replace('something=\'','') and expect to escape the single quote with slash, it doesn't work too.