sh_cpl/src/cpl/utils/string.py

67 lines
1.7 KiB
Python
Raw Normal View History

2021-03-10 22:11:05 +01:00
import re
2021-04-11 13:00:05 +02:00
import string
import random
2021-03-10 22:11:05 +01:00
class String:
2021-03-14 16:06:23 +01:00
"""
Useful functions for strings
"""
2021-03-10 22:11:05 +01:00
@staticmethod
2021-04-11 13:00:05 +02:00
def convert_to_camel_case(chars: str) -> str:
"""
Converts string to camel case
:param chars:
:return:
"""
converted_name = chars
char_set = string.punctuation + ' '
for char in char_set:
if char in converted_name:
converted_name = ''.join(word.title() for word in converted_name.split(char))
return converted_name
@staticmethod
def convert_to_snake_case(chars: str) -> str:
2021-03-14 16:06:23 +01:00
"""
Converts string to snake case
2021-04-11 13:00:05 +02:00
:param chars:
2021-03-14 16:06:23 +01:00
:return:
"""
# convert to train-case to CamelCase
2021-04-11 13:00:05 +02:00
if '-' in chars:
chars = ''.join(word.title() for word in chars.split('-'))
2021-03-10 22:11:05 +01:00
pattern1 = re.compile(r'(.)([A-Z][a-z]+)')
pattern2 = re.compile(r'([a-z0-9])([A-Z])')
2021-04-11 13:00:05 +02:00
file_name = re.sub(pattern1, r'\1_\2', chars)
return re.sub(pattern2, r'\1_\2', file_name).lower()
@staticmethod
2021-04-11 13:00:05 +02:00
def first_to_upper(chars: str) -> str:
2021-03-14 16:06:23 +01:00
"""
Converts first char to upper
2021-04-11 13:00:05 +02:00
:param chars:
2021-03-14 16:06:23 +01:00
:return:
"""
2021-04-11 13:00:05 +02:00
return f'{chars[0].upper()}{chars[1:]}'
@staticmethod
2021-04-11 13:00:05 +02:00
def first_to_lower(chars: str) -> str:
2021-03-14 16:06:23 +01:00
"""
Converts first char to lower
2021-04-11 13:00:05 +02:00
:param chars:
2021-03-14 16:06:23 +01:00
:return:
"""
2021-04-11 13:00:05 +02:00
return f'{chars[0].lower()}{chars[1:]}'
@staticmethod
def random_string(chars: str, length: int) -> str:
"""
Creates random string by given chars and length
"""
return ''.join(random.choice(chars) for _ in range(length))