I have this url inside a variable image:
image = http://graph.facebook.com/111111111111111/picture?type=square
I want a regex ruby for replace the last string after equal symbol = for these urls:
image = http://graph.facebook.com/111111111111111/picture?type=small
image = http://graph.facebook.com/111111111111111/picture?type=large
image = http://graph.facebook.com/111111111111111/picture?type=normal
the number 111111111111111 is a 15 digits number.
How can I do it?
Thank you very much!