From ef3f1bfa88cd2702bdcd219549b7b02db9651b12 Mon Sep 17 00:00:00 2001 From: xRain Date: Sun, 26 Sep 2021 13:11:22 +0800 Subject: [PATCH] fix checkcell regex --- Helpers/SimApiUtil.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Helpers/SimApiUtil.cs b/Helpers/SimApiUtil.cs index 185bf08..ee035f7 100644 --- a/Helpers/SimApiUtil.cs +++ b/Helpers/SimApiUtil.cs @@ -13,7 +13,7 @@ namespace SimApi.Helpers /// public static bool CheckCell(string cell) { - var regex = new Regex("^1[34578]\\d{9}$"); + var regex = new Regex("^1[3456789]\\d{9}$"); return regex.IsMatch(cell); }