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