Skip to content

better implementation of camelcase #31

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions stringcase.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,8 @@ def camelcase(string):

"""

string = re.sub(r"^[\-_\.]", '', str(string))
if not string:
return string
return lowercase(string[0]) + re.sub(r"[\-_\.\s]([a-z])", lambda matched: uppercase(matched.group(1)), string[1:])
string = ''.join(s.capitalize() for s in re.split('([^a-zA-Z0-9])', string) if a.isalnum())
return str.lower(string[:1]) + string[1:]


def capitalcase(string):
Expand Down