예제 #1
0
파일: String.cs 프로젝트: nm-1216/os.brain
 /// <summary>
 /// String Is A Legal Mobile Phone Number
 /// </summary>
 /// <param name="str">Check String</param>
 /// <returns>returns String Is A Legal Mobile Phone Number</returns>
 public static bool IsMobile(this string str)
 {
     return(RegExp.IsMobile(str));
 }