Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Regex::CompileOptions::MULTILINE_ONLY #14870

Merged
merged 15 commits into from
Oct 10, 2024
5 changes: 5 additions & 0 deletions src/regex.cr
Original file line number Diff line number Diff line change
Expand Up @@ -240,11 +240,15 @@ class Regex
# flag that activates both behaviours, so here we do the same by
# mapping `MULTILINE` to `PCRE_MULTILINE | PCRE_DOTALL`.
# The same applies for PCRE2 except that the native values are 0x200 and 0x400.
#
# For the behaviour of `PCRE_MULTILINE` use `MULTILINE_ONLY`.

# Multiline matching.
#
# Equivalent to `MULTILINE | DOTALL` in PCRE and PCRE2.
MULTILINE = 0x0000_0006
# Equivalent to `MULTILINE`in PCRE and PCRE2.
ralsina marked this conversation as resolved.
Show resolved Hide resolved
MULTILINE_ONLY = 0x0000_0040
ralsina marked this conversation as resolved.
Show resolved Hide resolved

DOTALL = 0x0000_0002

Expand Down Expand Up @@ -600,6 +604,7 @@ class Regex
# Regex.new("ab+c", :anchored).inspect # => Regex.new("ab+c", Regex::Options::ANCHORED)
# ```
def inspect(io : IO) : Nil
p! options, ~CompileOptions[IGNORE_CASE, MULTILINE, EXTENDED]
ralsina marked this conversation as resolved.
Show resolved Hide resolved
if (options & ~CompileOptions[IGNORE_CASE, MULTILINE, EXTENDED]).none?
inspect_literal(io)
else
Expand Down
1 change: 1 addition & 0 deletions src/regex/pcre2.cr
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ module Regex::PCRE2
flag |= case option
when .ignore_case? then LibPCRE2::CASELESS
when .multiline? then LibPCRE2::DOTALL | LibPCRE2::MULTILINE
when .multiline_only? then LibPCRE2::MULTILINE
ralsina marked this conversation as resolved.
Show resolved Hide resolved
when .dotall? then LibPCRE2::DOTALL
when .extended? then LibPCRE2::EXTENDED
when .anchored? then LibPCRE2::ANCHORED
Expand Down