rebase 0.4 and create 0.5

This commit is contained in:
ada-dmitry
2024-05-05 14:29:47 +03:00
parent 193ad02635
commit 64639d22f6
64 changed files with 615 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
import re
def is_cyr_or_dig(string):
pattern = r'^[\u0400-\u04FF\d]+$'
return bool(re.match(pattern, string))