2 lines
55 B
Text
2 lines
55 B
Text
str =~ ~r/this/ # => false
|
|
str =~ ~r/this/i # => true
|
str =~ ~r/this/ # => false
|
|
str =~ ~r/this/i # => true
|