Regex::Options
Inherits Enum / Comparable / Value / Object
Represents compile options passed to Regex.new.
This type is intended to be renamed to CompileOptions. Please use that
name.
Constants
Case insensitive match.
Multiline matching.
Equivalent to MULTILINE | DOTALL in PCRE and PCRE2.
Equivalent to MULTILINE in PCRE and PCRE2.
Ignore white space and # comments.
Force pattern anchoring at the start of the subject.
Force pattern anchoring at the end of the subject.
Unsupported with PCRE.
Do not check the pattern for valid UTF encoding.
This option is potentially dangerous and must only be used when the
pattern is guaranteed to be valid (e.g. String#valid_encoding?).
Failing to do so can lead to undefined behaviour in the regex library
and may crash the entire process.
NOTE: String is supposed to be valid UTF-8, but this is not guaranteed or
enforced. Especially data originating from external sources should not be
trusted.
UTF validation is comparatively expensive, so skipping it can produce a significant performance improvement.
pattern = "fo+"
if pattern.valid_encoding?
regex = Regex.new(pattern, options: Regex::CompileOptions::NO_UTF_CHECK)
regex.match(foo)
else
raise "Invalid UTF in regex pattern"
end
The standard library implicitly applies this option when it can be sure
about the patterns's validity (e.g. on repeated matches in String#gsub).
Enable matching against subjects containing invalid UTF bytes. Invalid bytes never match anything. The entire subject string is effectively split into segments of valid UTF.
Read more in the PCRE2 documentation.
When this option is set, MatchOptions::NO_UTF_CHECK is ignored at match time.
Unsupported with PCRE.
NOTE: This option was introduced in PCRE2 10.34 but a bug that can lead to an infinite loop is only fixed in 10.36 (https://github.com/PCRE2Project/pcre2/commit/e0c6029a62db9c2161941ecdf459205382d4d379).