There are 4 different types of cases you can convert the text in Sublime Text Editor 3,
Sublime Case Conversion Example
Upper Case Conversion:
- Be on the tab you want to do upper case conversion.
- Select the text you want to convert (if you want to do it for the entire file, you can use Ctrl + A on Windows, or Command + A if using macOS to select all text)
- Now go Menu: Edit → Convert Case → Upper Case.
- Your selected text will get converted in upper case.
Before: This sample TEXT needs to be converted into upper case
After : THIS SAMPLE TEXT NEEDS TO BE CONVERTED INTO UPPER CASE
⛏️ You can also use keyboard shortcut: Ctrl+K, Ctrl+U on Windows OS (Command ⌘ + K followed by Command ⌘ + U on macOS) for upper case conversion
Lower Case Conversion:
- Select the text in the tab/file you want to convert to Lower case.
- Goto Menu: Edit → Convert Case → Lower Case.
- Your selected text will get converted in lower case.
Before: This sample TEXT needs to be converted into LOWER case
After : this sample text needs to be converted into lower case
⛏️ You can also use keyboard shortcut: Ctrl+K, Ctrl+L on Windows OS (Command ⌘ + K followed by Command ⌘ + L on macOS) for lower case conversion
Title Case Conversion:
- Select the text in the tab/file you want to convert to Title case.
- Goto Menu: Edit → Convert Case → Title Case.
- Your selected text will get converted in title case.
Before: This sample TEXT needs to be converted into Title case
After : This Sample Text Needs To Be Converted Into Title Case
Swap Case Conversion:
- Select the text in the tab/file you want to convert to Swap case.
- Goto Menu: Edit → Convert Case → Swap Case.
- Your selected text will get converted in swap case.
Before: This sample TEXT needs to be converted into SWAP case
After : tHIS SAMPLE text NEEDS TO BE CONVERTED INTO swap CASE
Have prepared a GIF Image to demonstrate to Upper and to Lower cases using Keyboard shortcuts.

Sublime text 3 git to upper - to lower.gif
More Posts related to Sublime-Text,
- How to add ruler in Sublime Text tab window
- Change Sublime Text 3 white background color theme
- Replace new line with comma in Sublime Text Editor
- Sublime Text 3 Convert Case to Upper, Lower, Title or Swap
- How to add Multiple Rulers in Sublime Text
- How to install Packages in Sublime Text Editor
- How to display File CR LF Newline Characters in Sublime Text
- Steps to Compare Two files in Sublime Text Side-by-Side
- How to Set Permanent ruler in Sublime Text
- How to shuffle lines randomly in Sublime Text
- Word count in Sublime Text Editor
More Posts:
- MySQL Error :1007 SQLSTATE: HY000 (ER_DB_CREATE_EXISTS) Message: Can't create database '%s'; database exists - MySQL
- Eclipse: Updating Maven Project. Unsupported IClasspathEntry kind=4 - Eclipse
- Xcode 13 - unknown error compiling for iOS 15.0 but module has a minimum deployment target of iOS 15.2 - iOS
- How to access SharePoint Online data using Postman - REST API and Bearer token - SharePoint
- Fixed Length Android Edittext - Android
- Fix - bash: man: command not found - Linux
- Indent Python code in Notepad++ - Python
- Convert Java Map Collection Object to JSON String using Jackson - Java