Ви не можете вибрати більше 25 тем
Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Text.RegularExpressions;
- using System.Threading.Tasks;
-
- namespace HKCardManager
- {
- public static class Extend
- {
- /// <summary>
- /// 验证字符串是否是手机号码
- /// </summary>
- /// <param name="str"></param>
- /// <returns></returns>
- public static bool IsMobile(this string str)
- {
- if (string.IsNullOrEmpty(str)) return false;
- return Regex.IsMatch(str, @"^(1)\d{10}$");
- }
- }
- }
|