Is there any implementation of regex that allow to replace group in regex with lowercase version of it?
In Perl, there's
$string =~ tr/[A-Z]/[a-z]/;