日期:2014-05-17 浏览次数:20792 次
string input = "1234"; string output = Regex.Replace(input, @"(.{2})", "$1-").TrimEnd('-'); Console.WriteLine(output);