262

I use Notepad ++ for coding mostly.

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

Matt
  • 45,022
  • 8
  • 78
  • 119
wordpressm
  • 3,189
  • 3
  • 20
  • 29

6 Answers6

408

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

jalynn2
  • 6,397
  • 2
  • 16
  • 15
  • 2
    I look at this and want to change the capital of each word (making the first letter of each word capital). Can notepad++ do that? – suhao399 May 17 '16 at 09:34
  • 3
    @LucVu: This is called Title Case, Notepad++ calls it Proper Case and the answer is here: http://superuser.com/questions/115432/converting-text-to-title-case-in-notepad – Erlend Leganger Jun 10 '16 at 07:00
  • 49
    You can also use `Ctrl+Shift+U` for UPPERCASE and `Ctrl+U` for lowercase if you like shortcut keys. – bobasti Oct 10 '16 at 12:42
  • Just an FYI: If you are using Visual Studio 2015 these shortcuts work directly in the code editor. – Vishweshwar Kapse Dec 11 '16 at 11:25
  • This doesn't work for me (Notepad++ v6.2.3 on Windows 7). Only the `Ctrl+Shift+U`/`Ctrl+U` or [SQL_Novice's answer](https://stackoverflow.com/a/36546699/6689867) work. – CarLaTeX Jan 04 '19 at 15:07
160

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)

FranciscoBouza
  • 590
  • 6
  • 19
Adrian Jandl
  • 2,985
  • 4
  • 23
  • 30
60

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

Grhm
  • 6,726
  • 4
  • 40
  • 64
Reetika
  • 1,227
  • 2
  • 17
  • 24
21

In my notepad++ I press

Ctrl+A = To select all words

Ctrl+U = To convert lowercase

Ctrl+Shift+U = To convert uppercase

desertnaut
  • 57,590
  • 26
  • 140
  • 166
Vítor Oliveira
  • 1,851
  • 18
  • 23
4

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

android_happy
  • 67
  • 1
  • 4
3

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

Raul Pinto
  • 1,095
  • 8
  • 15