最速Rubyリファレンスマニュアル検索!
すべて(201)
2.1.0(16)
2.2.0(16)
2.3.0(16)
2.4.0(17)
2.5.0(17)
2.6.0(17)
2.7.0(17)
3.0(17)
3.1(17)
3.2(17)
3.3(17)
3.4(17)
201件ヒット
[201-201件を表示]
(0.032秒)
トップページ
>
:
ruby
>
:
ビルトイン
>
:
インスタンスメソッド
>
:
regexp
>
クラス:Regexp
別のキーワード
rbconfig ruby
fiddle ruby_free
fiddle build_ruby_platform
rake ruby
rubygems/defaults ruby_engine
キーワード
==
(12)
===
(12)
=~
(12)
casefold?
(12)
eql?
(12)
fixed
_
encoding?
(12)
hash
(12)
inspect
(12)
match
(24)
match?
(9)
named
_
captures
(12)
names
(12)
options
(12)
source
(12)
to
_
s
(12)
~
(12)
検索結果
先頭1件
Regexp
#
source -> String
<<
<
1
2
3
>>
Regexp
#
source -> String
(9010.0)
3.4
インスタンスメソッド
その正規表現のもととなった文字列表現を生成して返します。
...
その正規表現のもととなった文字列表現を生成して返します。
//emlist[例][
ruby
]{
re = /foo|bar|baz/i
p re.source # => "foo|bar|baz"
//}
...
<<
<
1
2
3
>>