私は正規表現でこの行を持っています:
user.image.gsub(%r{(http://graph.facebook.com/\d{15}/picture\?type=)\w+}, '\1large')
プロフィール画像の URL は次のいずれかです。
http://graph.facebook.com/12/picture?type=square
http://graph.facebook.com/123/picture?type=square
http://graph.facebook.com/1234/picture?type=square
http://graph.facebook.com/12345679/picture?type=square
length number
URL内は未定です。
この正規表現を使用して、この URL 内の任意の長さの数値に一致させるにはどうすればよいですか?
私が試した:
user.image.gsub(%r{(http://graph.facebook.com/\d/picture\?type=)\w+}, '\1large')
しかし、それは機能していません。