Improved path and name handling in new command

This commit is contained in:
2021-04-10 11:01:56 +02:00
parent 2b5c75cc67
commit f6fc5d09e7
3 changed files with 15 additions and 3 deletions

View File

@@ -13,10 +13,14 @@ class String:
:param name:
:return:
"""
# convert to train-case to CamelCase
if '-' in name:
name = ''.join(word.title() for word in name.split('-'))
pattern1 = re.compile(r'(.)([A-Z][a-z]+)')
pattern2 = re.compile(r'([a-z0-9])([A-Z])')
file_name = re.sub(pattern1, r'\1_\2', name)
return re.sub(pattern2, r'\1_\2', file_name).lower().replace('-', '_')
return re.sub(pattern2, r'\1_\2', file_name).lower()
@staticmethod
def first_to_upper(string: str) -> str: