Skip to content

Instantly share code, notes, and snippets.

@sanjitk7
Last active May 17, 2020 07:00
Show Gist options
  • Save sanjitk7/a57fdd11d1036fe75925ce7face975e0 to your computer and use it in GitHub Desktop.
Save sanjitk7/a57fdd11d1036fe75925ce7face975e0 to your computer and use it in GitHub Desktop.
Function to Split Camel Case Keyword
def camelCaseSplit(word):
if (isCamelCase(word)):
return re.split(r"(?=[A-Z])", word)
else:
return []
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment