Compare commits

..

No commits in common. "51f7d745d86f4ef7b04cf010fdb1e0ff4d7ad1a7" and "fc8c8941b8b6992f91ef0d190225f8315ee549e0" have entirely different histories.

1 changed files with 1 additions and 2 deletions

View File

@ -5,8 +5,7 @@ namespace AyCode.Core.Consts;
public static partial class AcRegExpression public static partial class AcRegExpression
{ {
public const string EmailMask = @"(\w|[.-])+@(\w|-)+\.(\w|-){2,4}"; public const string EmailMask = @"(\w|[.-])+@(\w|-)+\.(\w|-){2,4}";
//public const string PhoneNumberMask = @"\+(9[976]\d|8[987530]\d|6[987]\d|5[90]\d|42\d|3[875]\d|2[98654321]\d|9[8543210]|8[6421]|6[6543210]|5[87654321]|4[987654310]|3[9643210]|2[70]|7|1)\W*\d\W*\d\W*\d\W*\d\W*\d\W*\d\W*\d\W*\d\W*(\d{1,2})"; public const string PhoneNumberMask = @"\+(9[976]\d|8[987530]\d|6[987]\d|5[90]\d|42\d|3[875]\d|2[98654321]\d|9[8543210]|8[6421]|6[6543210]|5[87654321]|4[987654310]|3[9643210]|2[70]|7|1)\W*\d\W*\d\W*\d\W*\d\W*\d\W*\d\W*\d\W*\d\W*(\d{1,2})";
public const string PhoneNumberMask = @"^\+(9[976]\d|8[987530]\d|6[987]\d|5[90]\d|42\d|3[875]\d|2[98654321]\d|9[8543210]|8[6421]|6[6543210]|5[87654321]|4[987654310]|3[9643210]|2[70]|7|1)\W*\d(\W*\d){1,14}$";
[GeneratedRegex(AcRegExpression.EmailMask)] [GeneratedRegex(AcRegExpression.EmailMask)]
public static partial Regex EmailRegex(); public static partial Regex EmailRegex();