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.

24 rader
579 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Text.RegularExpressions;
  6. using System.Threading.Tasks;
  7. namespace HKCardManager
  8. {
  9. public static class Extend
  10. {
  11. /// <summary>
  12. /// 验证字符串是否是手机号码
  13. /// </summary>
  14. /// <param name="str"></param>
  15. /// <returns></returns>
  16. public static bool IsMobile(this string str)
  17. {
  18. if (string.IsNullOrEmpty(str)) return false;
  19. return Regex.IsMatch(str, @"^(1)\d{10}$");
  20. }
  21. }
  22. }