fork download
  1. string = "View_Export_US_Horizontals_Ultimate_DirectionalSurveys"
  2. rx = /\AView_Export_(US_(?:GoM|Horizontals|Onshore))(?:_(Ultimate))?_(\w+)/
  3. one, two, three = string.match(rx).captures
  4.  
  5. puts one #=> US_Horizontals
  6. puts two #=> Ultimate
  7. puts three #=> DirectionalSurveys
Success #stdin #stdout 0.01s 6320KB
stdin
Standard input is empty
stdout
US_Horizontals
Ultimate
DirectionalSurveys