るりまサーチ (Ruby 2.6.0)

最速Rubyリファレンスマニュアル検索!
1件ヒット [1-1件を表示] (0.013秒)
トップページ > バージョン:2.6.0[x] > クエリ:MatchData[x] > クラス:Symbol[x]

別のキーワード

  1. matchdata []
  2. matchdata offset
  3. _builtin matchdata
  4. matchdata ==
  5. matchdata end

ライブラリ

検索結果

Symbol#match(other) -> MatchData | nil (361.0)

正規表現 other とのマッチを行います。

...ます。

@return マッチが成功すれば MatchData オブジェクトを、そうでなければ nil を返します。

p :foo.match(/foo/) # => #<MatchData "foo">
p :foobar.match(/bar/) # => #<MatchData "bar">
p :foo.match(/bar/) # => nil

@see String#match
@see Symbol#match?...