The solution using ?R (regression) didn't work when the regexes were put together into one regex, because ?R implicitly references the "whole regex", which becomes something different when merging many separate regexes into one. Instead use subroutines which are more general and can be used to implement ?R. Use differently named subroutines so they are unambiguous no matter which regex they are a part of.
The solution using ?R (regression) didn't work when the regexes were put together into one regex, because ?R implicitly references the "whole regex", which becomes something different when merging many separate regexes into one. Instead use subroutines which are more general and can be used to implement ?R. Use differently named subroutines so they are unambiguous no matter which regex they are a part of.
Fixes #440