我有一个像这样的字符串:
"/system/path/513/b02/36a/66ea2557[*,0].swf,16"
我在我的应用程序中使用 Ruby on Rails。我试图通过将 1-16 附加到 66ea2557 的末尾来制作 16 个网址,以获得类似:
"/system/path/513/b02/36a/66ea25571.swf"
"/system/path/513/b02/36a/66ea25572.swf"
..
"/system/path/513/b02/36a/66ea255715.swf"
"/system/path/513/b02/36a/66ea255716.swf"
我怎样才能在 Ruby 中做到这一点?