How to replace uppercase letters to lowercase letters using regex in Eclipse?

前端 未结 4 1022
野趣味
野趣味 2021-02-05 02:32

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_ fr

4条回答
  •  滥情空心
    2021-02-05 02:52

    I needed to do this for a huge chunk of source code where string literals needed to be converted to lowercase. I found a way using Notepad++ and the Python Script plugin, as used here.

提交回复
热议问题