Bästa fria Fallomvandlare
Byt text mellan UPERCASE, små bokstäver, Titel, Dom, kamel fall, orm_ fall och kebab- fall - fri.
Hur det fungerar
- Klistra in text. Skriv eller klistra in texten du vill åter-case.
- Konvertera. Tryck Konvertera fall för att generera varje stil på en gång.
- Kopiera. Välj det fall du behöver - från Title Case till Ormen_case - och kopiera det.
Om detta verktyg
Paste text and get every common case at once: UPPERCASE, lowercase, Title Case, Sentence case, plus the developer styles camelCase, snake_case and kebab-case. It saves the fiddly job of retyping a heading, fixing text that arrived in all caps, or turning a label into a variable name. Each conversion is shown together so you can copy the one you want. There's no signup, and your text is converted from the request and never stored.
Vad folk använder det till
- Fixa en rubrik som kom in som ALLA CAPS
- Förvandla en etikett till ett variabelnamn för kamel Case eller orm_case
- Gör en titel enhetlig i Title Case
- Konvertera en fras till en kebab- falls URL- snigel
Utvecklar- API
Automatisera verktyget från din egen kod. Skicka en POST-förfrågan till slutmålet nedan och få samma resultat som webbverktyget producerar. Det är hastighetsbegränsat per IP och behöver ingen registrering - API-nycklar för högre gränser kommer.
https://best.free/api/tools/case-converter/
| Parameter | Exempel | Krävs | Anmärkningar |
|---|---|---|---|
text |
hello world from best free |
Ja, det är jag. |
curl -X POST https://best.free/api/tools/case-converter/ \
-H 'Content-Type: application/json' \
-d '{"text": "hello world from best free"}'
import requests
r = requests.post(
"https://best.free/api/tools/case-converter/",
json={"text": "hello world from best free"},
)
print(r.json())
const r = await fetch("https://best.free/api/tools/case-converter/", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ text: "hello world from best free" }),
});
const data = await r.json();
console.log(data);
Svar: JSON map of every case style for the input.
{"ok": true, "cases": {"UPPERCASE": "HELLO WORLD…", "snake_case": "hello_world…"}}