108件ヒット
[101-108件を表示]
(0.045秒)
別のキーワード
ライブラリ
- ビルトイン (96)
-
json
/ add / regexp (12)
キーワード
- compile (12)
- escape (12)
-
json
_ create (12) -
last
_ match (24) - new (12)
- quote (12)
-
try
_ convert (12) - union (12)
検索結果
-
Regexp
. try _ convert(obj) -> Regexp | nil (8.0) -
obj を to_regexp メソッドで Regexp オブジェクトに変換しようと 試みます。
...obj を to_regexp メソッドで Regexp オブジェクトに変換しようと
試みます。
変換に成功した場合はそれを返し、失敗時には nil を返します。
//emlist[例][ruby]{
Regexp.try_convert(/re/) # => /re/
Regexp.try_convert("re") # => nil
//}...