self !~ other -> bool
自身が other とマッチしない事を判定します。
self#=~(obj) を反転した結果と同じ結果を返します。
例 obj = 'regexp' p (obj !~ /re/) # => false obj = nil p (obj !~ /re/) # => true
obj = 'regexp' p (obj !~ /re/) # => false obj = nil p (obj !~ /re/) # => true
[SEE_ALSO] Object#=~