instance method URI::Generic#query

query -> String | nil[permalink][rdoc][edit]

自身の query を文字列で返します。設定されていない場合は nil を返します。

例:

require 'uri'
p URI.parse('http://example.com/?hoge').query   #=> "hoge"