mirror of
https://github.com/EstrellaXD/Auto_Bangumi.git
synced 2026-04-26 11:32:16 +08:00
6 lines
140 B
Python
6 lines
140 B
Python
import re
|
|
name = "Tate no Yuusha no Nariagari S02 "
|
|
|
|
season_rules = r'S(\d{0,3}|\d{1,3}\.\d{1,2})'
|
|
a = re.match(season_rules, name)
|
|
print(a) |