Text

Case to SwapCase

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

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

Free Online SwapCase Converter

Our string formatting tool instantly transforms your normal text, sentences, or code variables into SwapCase. 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 SwapCase format with the best possible settings.

3. Copy SwapCase

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

Frequently Asked Questions

Conversion Specs

InputCase
OutputSwapCase
SafetyHTTPS / Auto-delete
Price
Free

Using code

swapCase

Uppercase becomes lowercase, and lowercase becomes uppercase.

Parameters

NameTypeDescription
textstringThe text to convert.

Returns

stringThe swapped case string.
npm i @razomy/string-case
import {swapCase} from '@razomy/string-case';

swapCase('Hello World');
// => hELLO wORLD

swapCase('camelCase');
// => CAMELcASE

swapCase('123 ABC xyz');
// => 123 abc XYZ