String Case Converter Online
Online Text tool that can convert your text to the case of your choosing.
Stop rewriting mistakes!
Convert Case
Have you ever written a long email only to notice that a portion of it has been all in lowercase? While word and email applications provide a good grammar and spell correction functionalitys, they do not provide text case corrections. Instead of going line by line fixing those mistakes, you can simply copy and paste your text here and correct it by choosing on of the options above
Text Conversion Code Examples
Developers... I see you 👀
How do I convert a string to: ?
string.toLowercase();
string.toUpperCase();
string.replace(/(?:^|\s)\S/g, function(a) { return a.toUpperCase(); })
string.toLowerCase().replace(/(^\s*\w|[\.\!\?]\s*\w)/g,function(c){return c.toUpperCase()});
$value = strtolower($value);
$value = strtoupper($value);
$value = ucwords($value);
string = "Make THIS to lowercase"
string.lower()
'Hello world'.upper()
'Hello world'.title()
Conversion Types
Lower Case
im a sentence in lower caseUsing lowercase letters in any of these cases typically indicates that the communication is casual or informal, such as in text messages or online posts.
Upper Case
IM A SENTENCE IN UPPER CASETyping an entire message in upper case is considered equivalent to shouting.
Capitalize Case
This Is A Sentence In Capitalize CaseCapitalization is writing every first letter of a word with a capital letter. Can also be referenced as title case
Sentence Case
This is an example of sentence caseSentence case (uncountable) The standard capitalisation of an English sentence, with the first letter uppercase and subsequent letter lowercase with exceptions such as proper nouns or acronyms.
Alternate Case
ThIs iS An eXaMpLe oF AlTeRnAtE CaSeA form of capitalization where capital letters are randomly placed throughout the word(s), now used to convey mockery through text messages.
Camel Case
ThisIsCamelCaseA typographical convention in which an initial capital is used for the first letter of a word forming the second element of a closed compound, e.g. PayPal, iPhone, MasterCard. Commonly used in some programming languages
Snake Case
this_is_a_sentence_in_snake_caseSnake case (stylized as snake_case) refers to the style of writing in which each space is replaced by an underscore (_) character, and the first letter of each word is written in lowercase. It is a commonly used naming convention in computing, for example for variable and subroutine names, and for filenames.
Kebap Case
this-is-a-sentence-in-kebap-caseKebab case -- or kebab-case -- is a programming variable naming convention where a developer replaces the spaces between words with a dash. You know just like a kebap.. :)
Pascal Case
Im A Sentence In Pascal CasePascal case -- or PascalCase -- is a programming naming convention where the first letter of each compound word in a variable is capitalized.