No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
- 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}$");
- }
- }
- }
|