Skip to content

Library for converting strings from camel case to snake case and vice versa

License

Notifications You must be signed in to change notification settings

Nayjest/StrCaseConverter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

nayjest/str-case-converter

Latest Stable Version Scrutinizer Code Quality Build Status Code Coverage

Library for converting strings from camel case to snake case and vice versa.

Installation

The recommended way of installing the library is through Composer.

Run following command:

composer require nayjest/str-case-converter

Usage

Converting from snake case to camel case

use Nayjest\StrCaseConverter\Str;
...
echo Str::toCamelCase('my-string'); // 'MyString'
echo Str::toCamelCase('one_more_string'); // 'OneMoreString'

Source string may be separated to words using following characters: '-', '_' and space.

Converting from camel case to snake case

use Nayjest\StrCaseConverter\Str;
...
echo Str::toSnakeCase('MyString'); // 'my_string'

// It's possible to use custom delimiter:
echo Str::toSnakeCase('OneMoreString', '-'); // 'one-more-string'

Testing

Run following command:

phpunit

License

© 2015—2023 Vitalii Stepanenko

Licensed under the MIT License.

Please see License File for more information.