ConvertText

免费增值
通过 reblim | 已更新 vor einem Monat | Tools
人气

0.1 / 10

延迟

64ms

服务等级

100%

Health Check

N/A

关注者:1
资源:
产品网站
API 创建者:
Rapid account: Reblim
reblim
reblim
登录并给 API 打分
打分:5 - 投票: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.