Is there any implementation of regex that allow to replace group in regex with lowercase version of it?
If your regex version supports it, you can use L, like so in a POSIX shell:
sed -r 's/(^.*)/L1/'
2.1m questions
2.1m answers
60 comments
57.0k users