-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 に答える