mirror of
https://github.com/fork-maintainers/iceraven-browser
synced 2024-11-03 23:15:31 +00:00
12 lines
423 B
Python
12 lines
423 B
Python
import re
|
|
|
|
|
|
def convert_camel_case_into_kebab_case(string):
|
|
# Inspired from https://stackoverflow.com/questions/1175208/elegant-python-function-to-convert-camelcase-to-snake-case # noqa: E501
|
|
first_pass = re.sub('(.)([A-Z][a-z]+)', r'\1-\2', string)
|
|
return re.sub('([a-z0-9])([A-Z])', r'\1-\2', first_pass).lower()
|
|
|
|
|
|
def lower_case_first_letter(string):
|
|
return '{}{}'.format(string[0].lower(), string[1:])
|