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/'
1.4m articles
1.4m replys
5 comments
57.0k users