-3

如何根据 c# 中给出的输入生成固定长度的字符串。

For example :
string s="1";
string newstring ;
I want the newstring to be "AB_000001";
// Similarly if 
s="xyz";
//I want the newstring as 
newstring = "AB_000xyz";
4

2 回答 2

1
string basestr = "AB_000000";
string inp = "xyz";
string res = basestr.Substring(0, basestr.Length - inp.Length) + inp;
于 2013-06-12T10:51:04.290 回答
1
String s = "AB_000000";
String newString="xyz";
s = s.Remove(s.Length - newString.Length, newString.Length);
s = s + newString;
于 2013-06-12T10:53:23.087 回答