如何将数字字符串“ 12345678”格式化为“ 1234-5678”。

string str = "12345678";

//I want to format it like below
res = "1234-5678";


谢谢

最佳答案

您可以使用string.Insert

string res = "12345678".Insert(4, "-");


参数是要插入的索引和要插入的字符串。

关于c# - 将“12345678”格式设置为“1234-5678”,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7526346/

10-09 09:18