ConvertText

GRATIS CON POSSIBILITÀ DI UPGRADE
Da reblim | Aggiornamento un mese fa | Tools
Popolarità

0.1 / 10

Latenza

64ms

Livello di servizio

100%

Health Check

N/A

Follower: 1
Risorse:
Sito web del prodotto
Creatore dell'API:
Rapid account: Reblim
reblim
reblim
Accedi per valutare l'API
Valutazione: 5 - Voti: 1

README

Easily convert text between different letter cases: lower case, UPPER CASE, Sentence case, Capitalized Case, rANdOm cAsE, camelCase, kebab-case, dot.case, and more.

**The currently available types are: **
upper (UPPER CASE), lower (lower case), capital (Capital Case), sentence (Sentence case), snake (snakecase), kebab (kebab-case), pascal (PascalCase), camel (camelCase), constant (CONSTANTCASE), header (Header-Case), dot (dot.case), flip (flips to the opposite case, between lower and upper), random (RAndoM cAsE), and none.

By entering the root endpoint, you should be able to see the available case conversions.

If you pass your text after the root path “/”, e.g. “/your text here”, you will get the response from the “none” text conversion type. To add a conversion type, simply pass the type as a query parameter, like so: “/your text here?type=camel”, and you will get a result similar to this:

{ "conversionType": "camel", "convertedText": "yourTextHere", "originalText": "your text here" }

If you are trying to convert larger text strings or text with special characters, then use the “POST” endpoint and pass the “text” and “type” as a JSON string.