re = /[EAQR]:\{((\d{3}\|?)+)\}(\^([-0-9.]+))?/m
str = 'E:{300}^2&E:{800}^4&A:{201}^-1&A:{200}^0.5&Q:{400|500|700}^2&R:{201|202}'
# Print the match result
str.scan(re) do |match|
puts match.to_s
end
Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for Ruby, please visit: http://ruby-doc.org/core-2.2.0/Regexp.html