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

Notepad++Case Sensitive

Notepad++ Problem Overview


I use Notepad ++ for coding mostly.

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

Notepad++ Solutions


Solution 1 - Notepad++

Just select the text you want to change, right click and select UPPERCASE or lowercase depending on what you want.

Solution 2 - Notepad++

Ctrl+A , Ctrl+Shift+U

should do the trick!

Edit: Ctrl+U is the shortcut to be used to convert capital letters to lowercase (reverse scenario)

Solution 3 - Notepad++

First select the text
To convert lowercase to uppercase, press Ctrl+Shift+U
To convert uppercase to lowercase, press Ctrl+U

Solution 4 - Notepad++

In my notepad++ I press

Ctrl+A = To select all words

Ctrl+U = To convert lowercase

Ctrl+Shift+U = To convert uppercase

Hope to help you!

Solution 5 - Notepad++

You could also, higlight the text you want to change, then navigate to - 'Edit' > 'Convert Case to' choose UPPERCASE or lowercase (as required).

Solution 6 - Notepad++

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 :)

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionwordpressmView Question on Stackoverflow
Solution 1 - Notepad++jalynn2View Answer on Stackoverflow
Solution 2 - Notepad++Adrian JandlView Answer on Stackoverflow
Solution 3 - Notepad++ReetikaView Answer on Stackoverflow
Solution 4 - Notepad++vitor_gaudencio_oliveiraView Answer on Stackoverflow
Solution 5 - Notepad++android_happyView Answer on Stackoverflow
Solution 6 - Notepad++Raul PintoView Answer on Stackoverflow