120件ヒット
[101-120件を表示]
(0.032秒)
別のキーワード
種類
- インスタンスメソッド (60)
- 文書 (36)
- 特異メソッド (24)
ライブラリ
- ビルトイン (84)
キーワード
-
1
. 6 . 8から1 . 8 . 0への変更点(まとめ) (12) - compile (12)
- extend (12)
-
extend
_ object (12) - new (12)
-
ruby 1
. 6 feature (12) - strftime (12)
- 正規表現 (12)
検索結果
先頭3件
-
Regexp
. compile(string , option = nil , code = nil) -> Regexp (18.0) -
文字列 string をコンパイルして正規表現オブジェクトを生成して返します。
...。
@param string 正規表現を文字列として与えます。
@param option Regexp::IGNORECASE, Regexp::MULTILINE,
Regexp::EXTENDED
の論理和を指定します。
Integer 以外であれば真偽値の指定として見なされ
、......。
//emlist[例][ruby]{
str = "This is Regexp"
t1 = Regexp.compile("this is regexp", Regexp::IGNORECASE)
t1.match(str)
p $~ # => "This is Regexp"
t2 = Regexp.compile('
this # ここは使用されない
\ is
\ regexp # ここも使用されない
', Regexp::EXTENDED | Regexp::IGNORECA... -
Regexp
. new(string , option = nil) -> Regexp (18.0) -
文字列 string をコンパイルして正規表現オブジェクトを生成して返します。
...。
@param string 正規表現を文字列として与えます。
@param option Regexp::IGNORECASE, Regexp::MULTILINE,
Regexp::EXTENDED
の論理和を指定します。
Integer 以外であれば真偽値の指定として見なされ
、......。
//emlist[例][ruby]{
str = "This is Regexp"
t1 = Regexp.compile("this is regexp", Regexp::IGNORECASE)
t1.match(str)
p $~ # => "This is Regexp"
t2 = Regexp.compile('
this # ここは使用されない
\ is
\ regexp # ここも使用されない
', Regexp::EXTENDED | Regexp::IGNORECA... -
Regexp
. new(string , option = nil , code = nil) -> Regexp (18.0) -
文字列 string をコンパイルして正規表現オブジェクトを生成して返します。
...。
@param string 正規表現を文字列として与えます。
@param option Regexp::IGNORECASE, Regexp::MULTILINE,
Regexp::EXTENDED
の論理和を指定します。
Integer 以外であれば真偽値の指定として見なされ
、......。
//emlist[例][ruby]{
str = "This is Regexp"
t1 = Regexp.compile("this is regexp", Regexp::IGNORECASE)
t1.match(str)
p $~ # => "This is Regexp"
t2 = Regexp.compile('
this # ここは使用されない
\ is
\ regexp # ここも使用されない
', Regexp::EXTENDED | Regexp::IGNORECA...