正则表达式中未确定的数字长度

时间:2012-12-13 15:59:56

标签: ruby-on-rails ruby regex

我有一行正则表达式:

user.image.gsub(%r{(http://graph.facebook.com/\d{15}/picture\?type=)\w+}, '\1large')

个人资料图片网址可以是:

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中的任何长度数?

我尝试过:

user.image.gsub(%r{(http://graph.facebook.com/\d/picture\?type=)\w+}, '\1large')

但它不起作用。

1 个答案:

答案 0 :(得分:1)

user.image.gsub(%r{(http://graph.facebook.com/\d+/picture\?type=)\w+}, '\1large')
                                 add a + here __^