module Utils::IRB::Regexp

def show_match(string)

Show the match of this Regexp on the +string+.
def show_match(string)
  string =~ self ? "#{$`}<<#{$&}>>#{$'}" : "no match"
end