Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- 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}$");
- }
- }
- }
|