Tekst

Hoofdlettergebruik naar IsLowerCase

Gratis en directe online tool om gewone tekst, strings of variabelen om te zetten naar IsLowerCase.

Invoertekst
is-lower-case Resultaat
100% Veilig
Snelle conversie
Hoge nauwkeurigheid

Gratis Online IsLowerCase Converter

Onze string-formatting tool zet uw gewone tekst, zinnen of codevariabelen direct om in IsLowerCase. Plak eenvoudigweg uw inhoud en de tool verwerkt automatisch spaties en hoofdlettergebruik.

Hoe te converteren

1. Plak Hoofdlettergebruik tekst

Plak of typ uw Hoofdlettergebruik-inhoud in het invoerveld.

2. Conversieproces

Onze tool converteert uw tekst automatisch naar IsLowerCase-formaat met de best mogelijke instellingen.

3. Kopieer IsLowerCase

De conversie is voltooid. U kunt het resultaat nu direct naar uw klembord kopiëren.

Veelgestelde vragen

Conversiespecificaties

InvoerHoofdlettergebruik
UitvoerIsLowerCase
VeiligheidHTTPS / Auto-verwijderen
Prijs
Gratis

Gebruik van code

isLowerCase

Determines whether the entire input string is in lower case by comparing it to its lower-cased equivalent. Non-alphabetic characters (such as digits, spaces, and symbols) do not affect the result, as they have no case and remain unchanged by the lower case conversion.

Parameters

NaamTypeBeschrijving
textstringThe string to check.

Geeft terug

booleanTrue if the string is lower case, false otherwise.
npm i @razomy/string-case
import {isLowerCase} from '@razomy/string-case';

isLowerCase('razomy');
// => true

isLowerCase('Razomy');
// => false

isLowerCase('string with 123');
// => true