Denis Koroskin wrote:
"abracazoo".match("a[b-e]", "g") is as short as "abracazoo" ~ regex("a[b-e]", "g") but doesn't existing conventions. I prefer it over '~' version. In is also fine (both ways).
This isn't so good for two reasons.First, I can't reuse regexes in your way, so if there is any expensive initialization, that is duplicated.
Second, I can't reuse regexes in your way, so I have to use a pair of string constants.
