I'd like to go through all of my source code files and replace every occurence of k_Xyyy with k_xyyy (switch the first letter after k_ from uppercase to lowercase).
I'm using the eclipse dialog to search and replace multiple files. Right now I have the regex \bk_([A-Z]).
How do I specify the replacement string of the regex?