okunishinishi / python-stringcase

String case converter for python.
https://pypi.python.org/pypi/stringcase
MIT License
206 stars 36 forks source link

'Foo_123 Bar!' to 'foo123Bar'? #13

Open stodge opened 5 years ago

stodge commented 5 years ago

Currently stringcase can do this:

stringcase.alphanumcase('Foo_123 Bar!') # =>'Foo123Bar'

Is there anyway to do this:

stringcase.alphanumcase('Foo_123 Bar!') # =>'foo123Bar'

ShivaShankerReddy commented 4 years ago

hi @stodge i added the code and kept pull request.

If it not come under enhancement. Send the response of alphanumcase() to lowercase() and you will get your required output..