instance method URI::Generic#fragment

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

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

例:

require 'uri'
u = URI.parse('http://example.com/#frgmt')
p u.fragment                                #=> "frgmt"