fork download
  1. re = /(?<=&quot;)(.*)(?=&quot;)/m
  2. str = '&quot;https://g...content-available-to-author-only...t.com/anonymous/d2efee7b3967debc531d67de9cc7993a/raw/3f5e0e63ce6fe3aa4cffc2d0afafd2415408308a/gistfile1.txt&quot;'
  3.  
  4. # Print the match result
  5. str.scan(re) do |match|
  6. puts match.to_s
  7. end
  8.  
Success #stdin #stdout 0.02s 9656KB
stdin
Standard input is empty
stdout
["https://g...content-available-to-author-only...t.com/anonymous/d2efee7b3967debc531d67de9cc7993a/raw/3f5e0e63ce6fe3aa4cffc2d0afafd2415408308a/gistfile1.txt"]