發布時間:2020-08-06 16:11 作者:獨孤劍 閱讀:3104
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApp22 { class Program { static void Main(string[] args) { Console.WriteLine("手機號中間四位星號顯示: {0}", HideMobile("13312341234")); Console.Read(); } /// <summary> /// 隱藏手機號中間4位 /// </summary> /// <param name="mobile"></param> /// <returns></returns> public static string HideMobile(string mobile) { if (mobile.Length == 11) { return mobile.Substring(0, 3) + "****" + mobile.Substring(7); } else { return mobile; } } } }
微信打賞, 微信掃一掃
支付寶打賞, 支付寶掃一掃
如果文章對您有幫助,歡迎給作者打賞