'-' 구분자가 있으면 구분자로 1,2,3번째 자리를 '|'로 구분하여 반환한다.'-' 구분자가 없으면 9,10,11자리별로 '|'로 구분하여 반환한다. /// /// 전화번호 구분자로 반환 /// /// /// public string GetPhoneNumber(string full) { string ret = string.Empty; if (!String.IsNullOrWhiteSpace(full) && full.Contains("-")) //010-123-1234, 010-1234-5678, 02-123-1234... { ret = full.Substring(0, full.IndexOf("-")); ret += "|" + full.Substring(full.IndexOf("-") + 1, (full..