How can I convert uppercase letters to lowercase in Notepad++

后端 未结 6 1711
无人共我
无人共我 2021-01-30 04:51

I use Notepad ++ for coding mostly.

How can I convert capital letters to lowercase and vice versa?

6条回答
  •  面向向阳花
    2021-01-30 05:23

    I had to transfer texts from an Excel file to an xliff file. We had some texts that were originally in uppercase but those translators didn't use uppercase so I used notepad++ as intermediate to do the conversion.

    Since I had the mouse in one hand (to mark in Excel and activate the different windows) I disliked the predefined shortcut (Ctrl+Shift+U) as "U" is too far away for my left hand. I first switched it to Ctrl+Shift+X which worked.

    Then I realized, that you can create macros easily, so I recorded one doing:

    • mark all
    • paste from clipboard
    • convert to upppercase
    • copy to clipboard

    That macro got assigned that very shortcut (Ctrl+Shift+X) and made my life easy :)

提交回复
热议问题