I want to insert 'n' spaces (or any string) at the beginning of a string in C++. Is there any direct way to do this using either std::strings or char* strings?
E.g. in Python you could simply do
>>> "." * 5 + "lolcat"
'.....lolcat'
|
1
|
I want to insert 'n' spaces (or any string) at the beginning of a string in C++. Is there any direct way to do this using either std::strings or char* strings? E.g. in Python you could simply do
|
||
|
|
|
|
Use one of the forms of string::insert:
This will insert "....." (five dots) at the start of the string (position 0). |
||
|
|
|
|
Check out std::string's constructors. |
||
|
|
|
|
You should write your own stream manipulator
|
||
|
|
|
|
There's no direct idiomatic way to repeat strings in C++ equivalent to the * operator in Python or the x operator in Perl. If you're repeating a single character, the two-argument constructor (as suggested by previous answers) works well:
This is a contrived example of how you might use an ostringstream to repeat a string n times:
Depending on the implementation, this may be slightly more efficient than simply concatenating the string n times. |
||
|
|