Equal Tilde (foo =~ bar)
# The 'Match' operator s = "foo/bar/pop" # => "foo/bar/pop" puts "yes" if s =~ /\/bar/ # yes /or/ =~ "hello world" # => 7