#!/usr/local/bin/ruby -w def show_regexp(a,re) if a =~ re "#{$`}<<#{$&}>>#{$‘}" else "no match" end end puts show_regexp(‘very interesting‘,/t/) puts show_regexp(‘Fats Waller‘,/a/)
时间: 2024-10-27 08:42:51
#!/usr/local/bin/ruby -w def show_regexp(a,re) if a =~ re "#{$`}<<#{$&}>>#{$‘}" else "no match" end end puts show_regexp(‘very interesting‘,/t/) puts show_regexp(‘Fats Waller‘,/a/)