M
ma
Hello,
I want to create a string with the exact size of say X that each char be
'.'. How can I do this? I tried the following and it did not work:
int x=10;
string tmp="";
tmp.padright(x,'.');
Regards
I want to create a string with the exact size of say X that each char be
'.'. How can I do this? I tried the following and it did not work:
int x=10;
string tmp="";
tmp.padright(x,'.');
Regards