uhop / node-re2

node.js bindings for RE2: fast, safe alternative to backtracking regular expression engines.
Other
489 stars 53 forks source link

single line flag doesn't work as expected #127

Closed viceice closed 2 years ago

viceice commented 2 years ago

Regex /### Release Notes.*### Configuration/s doesn't match newlines for .*.

https://regex101.com/r/lt7lJY/1

uhop commented 2 years ago

dotAll AKA s, which allows . to match newlines is not implemented.