[Feature #18788] [DOC] String options to `Regexp.new`

Co-Authored-By: Janosch Müller <janosch.mueller@betterplace.org>
This commit is contained in:
Nobuyoshi Nakada 2022-06-20 13:35:21 +09:00
Родитель 883d13dc41
Коммит 4a6facc2d6
2 изменённых файлов: 10 добавлений и 0 удалений

Просмотреть файл

@ -620,6 +620,11 @@ Options may also be used with <tt>Regexp.new</tt>:
Regexp.new("abc # Comment", Regexp::EXTENDED) #=> /abc # Comment/x
Regexp.new("abc", Regexp::IGNORECASE | Regexp::MULTILINE) #=> /abc/mi
Regexp.new("abc", "i") #=> /abc/i
Regexp.new("abc", "m") #=> /abc/m
Regexp.new("abc # Comment", "x") #=> /abc # Comment/x
Regexp.new("abc", "im") #=> /abc/mi
== Free-Spacing Mode and Comments
As mentioned above, the <tt>x</tt> option enables <i>free-spacing</i>

5
re.c
Просмотреть файл

@ -3665,6 +3665,11 @@ str_to_option(VALUE str)
*
* Optional argument +options+ is one of the following:
*
* - A String of options:
*
* Regexp.new('foo', 'i') # => /foo/i
* Regexp.new('foo', 'im') # => /foo/im
*
* - The logical OR of one or more of the constants
* Regexp::EXTENDED, Regexp::IGNORECASE, and Regexp::MULTILINE:
*