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

前端 未结 4 1033
野趣味
野趣味 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:56

    (for me, since I just started programming, this was more fun to think about) Take $pattern_to_change and convert it from ascii to decimal using ord().Take the resulting dec number and add 32. Then convert $desired_pattern back to ascii using chr().

    Or just download SublimeText and use its Find and Replace feature to Find All occurrences and replace them with difference text (Sublime has regex as well).

    I'm sure you could have converted one billion by hand since this post is like 5 years old, but you could have complete this in 5 minutes with Sublime.

    Really useful text editor.

提交回复
热议问题