|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import re |
|
|
|
from .num import DIGITS |
|
from .num import num2str |
|
from .num import verbalize_cardinal |
|
from .num import verbalize_digit |
|
|
|
|
|
def _time_num2str(num_string: str) -> str: |
|
"""A special case for verbalizing number in time.""" |
|
result = num2str(num_string.lstrip('0')) |
|
if num_string.startswith('0'): |
|
result = DIGITS['0'] + result |
|
return result |
|
|
|
|
|
|
|
RE_TIME = re.compile(r'([0-1]?[0-9]|2[0-3])' |
|
r':([0-5][0-9])' |
|
r'(:([0-5][0-9]))?') |
|
|
|
|
|
RE_TIME_RANGE = re.compile(r'([0-1]?[0-9]|2[0-3])' |
|
r':([0-5][0-9])' |
|
r'(:([0-5][0-9]))?' |
|
r'(~|-)' |
|
r'([0-1]?[0-9]|2[0-3])' |
|
r':([0-5][0-9])' |
|
r'(:([0-5][0-9]))?') |
|
|
|
|
|
def replace_time(match) -> str: |
|
""" |
|
Args: |
|
match (re.Match) |
|
Returns: |
|
str |
|
""" |
|
|
|
is_range = len(match.groups()) > 5 |
|
|
|
hour = match.group(1) |
|
minute = match.group(2) |
|
second = match.group(4) |
|
|
|
if is_range: |
|
hour_2 = match.group(6) |
|
minute_2 = match.group(7) |
|
second_2 = match.group(9) |
|
|
|
result = f"{num2str(hour)}ηΉ" |
|
if minute.lstrip('0'): |
|
if int(minute) == 30: |
|
result += "ε" |
|
else: |
|
result += f"{_time_num2str(minute)}ε" |
|
if second and second.lstrip('0'): |
|
result += f"{_time_num2str(second)}η§" |
|
|
|
if is_range: |
|
result += "θ³" |
|
result += f"{num2str(hour_2)}ηΉ" |
|
if minute_2.lstrip('0'): |
|
if int(minute) == 30: |
|
result += "ε" |
|
else: |
|
result += f"{_time_num2str(minute_2)}ε" |
|
if second_2 and second_2.lstrip('0'): |
|
result += f"{_time_num2str(second_2)}η§" |
|
|
|
return result |
|
|
|
|
|
RE_DATE = re.compile(r'(\d{4}|\d{2})εΉ΄' |
|
r'((0?[1-9]|1[0-2])ζ)?' |
|
r'(((0?[1-9])|((1|2)[0-9])|30|31)([ζ₯ε·]))?') |
|
|
|
|
|
def replace_date(match) -> str: |
|
""" |
|
Args: |
|
match (re.Match) |
|
Returns: |
|
str |
|
""" |
|
year = match.group(1) |
|
month = match.group(3) |
|
day = match.group(5) |
|
result = "" |
|
if year: |
|
result += f"{verbalize_digit(year)}εΉ΄" |
|
if month: |
|
result += f"{verbalize_cardinal(month)}ζ" |
|
if day: |
|
result += f"{verbalize_cardinal(day)}{match.group(9)}" |
|
return result |
|
|
|
|
|
|
|
RE_DATE2 = re.compile( |
|
r'(\d{4})([- /.])(0[1-9]|1[012])\2(0[1-9]|[12][0-9]|3[01])') |
|
|
|
|
|
def replace_date2(match) -> str: |
|
""" |
|
Args: |
|
match (re.Match) |
|
Returns: |
|
str |
|
""" |
|
year = match.group(1) |
|
month = match.group(3) |
|
day = match.group(4) |
|
result = "" |
|
if year: |
|
result += f"{verbalize_digit(year)}εΉ΄" |
|
if month: |
|
result += f"{verbalize_cardinal(month)}ζ" |
|
if day: |
|
result += f"{verbalize_cardinal(day)}ζ₯" |
|
return result |
|
|