Пример #1
0
 /// <summary>
 /// String Is Fixed Telephone Number Or A Legal Mobile Phone Number
 /// </summary>
 /// <param name="str">Check String</param>
 /// <param name="separator">separator char</param>
 /// <returns>returns String Is Fixed Telephone Number Or A Legal Mobile Phone Number</returns>
 public static bool IsPhones(this string str, params char[] separator)
 {
     return(RegExp.IsPhones(str, separator));
 }
Пример #2
0
 /// <summary>
 /// String Is Fixed Telephone Number Or A Legal Mobile Phone Number
 /// </summary>
 /// <param name="str">Check String</param>
 /// <returns>returns String Is Fixed Telephone Number Or A Legal Mobile Phone Number</returns>
 public static bool IsPhones(this string str)
 {
     return(RegExp.IsPhones(str));
 }