Flowdock
method

match?

Importance_1
v2_5_5 - Show latest stable - 0 notes - Class: String
match?(*args) public

Converts pattern to a Regexp (if it isn’t already one), then returns a true or false indicates whether the regexp is matched str or not without updating $~ and other related variables. If the second parameter is present, it specifies the position in the string to begin the search.

"Ruby".match?(/R.../)    #=> true
"Ruby".match?(/R.../, 1) #=> false
"Ruby".match?(/P.../)    #=> false
$&                       #=> nil
Show source
Register or log in to add new notes.