-3
如何根據c#中給出的輸入生成一個固定長度的字符串。在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";
你們採取了什麼樣的方法來解決這個問題?你寫了什麼代碼,爲什麼它不起作用? – Oded