Use method String.Insert(int startIndex, string val);
:
string x = "T12345";
x = x.Insert(1," ");
3
solved How to insert a space after the first character? [closed]
Use method String.Insert(int startIndex, string val);
:
string x = "T12345";
x = x.Insert(1," ");
3
solved How to insert a space after the first character? [closed]