/// <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)); }
/// <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)); }