lyoutakoduka / spartaproject

MIT License
0 stars 0 forks source link

Convert multiple byte character to single #57

Closed lyoutakoduka closed 2 months ago

lyoutakoduka commented 2 months ago

Create module to convert string that convert multiple byte character to single character.

Characters which can converted are big and small alphabet letters, and numbers like follow.

a-z: a-z
A-Z: A-Z
0-9: 0-9

Note that other characters are not converted by this module.

lyoutakoduka commented 2 months ago

Add module to return alphabet which include multiple or single byte characters.

Returned alphabet are grouped three types, they are big and small letter, and numbers.

Returned data structure

class structure_name(TypedDict):
    big: List[str] # Big letters
    small: List[str] # Small letters
    number: List[str] # Number letters
lyoutakoduka commented 2 months ago

Update returned data structure.

Returned data structure

class structure_name(TypedDict):
    big: List[str] # Big letters
    small: List[str] # Small letters
    number: List[str] # Number letters
    other: List[str] # Other letters