case-converter icon indicating copy to clipboard operation
case-converter copied to clipboard

Convert strings between 13 naming conventions: Snake case, Camel case, Kebab case, Pascal case, Ada case, Train case, Cobol case, Macro case, Upper case, Lower case, Title case, Sentence case and Dot...

Results 3 case-converter issues
Sort by recently updated
recently updated
newest added

The following reproduction code will show the issue: ```php use Jawira\CaseConverter\Convert; require __DIR__ . "/vendor/autoload.php"; $original = "__toString"; $text = new Convert($original); $expected = "To string"; $sentence = $text->toSentence(); echo...

This one is a ltitle bit tricky because it seems on the internet all case converters are producing the same output, which bugs me. How is a **sentence** case algorithm...