Development Ruby

def show_regexp(a, re) 
    if a =~ re 
        "#{$`}<<#{$&}>>#{$'}"  
    else 
        "no match" 
    end 
end 
a = "this is a test" 
show_regexp(a, /d|e/) 
show_regexp(a, /al|lu/)
show_regexp(a, /is test|this is/)