Text

Case to SentenceCase

Free and instant online tool to convert normal text, strings, or variables into SentenceCase.

Input Text
sentence-case Result
100% Secure
Fast Conversion
High Accuracy

Free Online SentenceCase Converter

Our string formatting tool instantly transforms your normal text, sentences, or code variables into SentenceCase. Simply paste your content, and the tool will automatically handle spaces and capitalization.

How to convert

1. Paste Case text

Paste or type your Case content into the input area.

2. Conversion Process

Our tool automatically converts your text to SentenceCase format with the best possible settings.

3. Copy SentenceCase

The conversion is complete. You can now copy the result directly to your clipboard.

Frequently Asked Questions

Conversion Specs

InputCase
OutputSentenceCase
SafetyHTTPS / Auto-delete
Price
Free

Using code

sentenceCase

Only the first letter of the result is capitalized, the rest is lowercase.

Parameters

NameTypeDescription
textstringThe text to convert.

Returns

stringThe sentence cased string.
npm i @razomy/string-case
import {sentenceCase} from '@razomy/string-case';

sentenceCase('helloWorld');
// => Hello world

sentenceCase('HELLO WORLD');
// => Hello world

sentenceCase('foo_bar_baz');
// => Foo bar baz