ruby regular Expressions

#!/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/)




你可能感兴趣的:(Ruby,regular,Expressions)