14
votes
10answers
24k views
C++: How to split a string?
What's the most elegant way to split a string in C++? The string can be assumed to be composed of words separated by whitespace.
(Note that I'm not interested in C string function …
5
votes
6answers
4k views
C++: how to get fprintf results as a std::string w/o sprintf
I am working with an open-source UNIX tool that is implemented in C++, and I need to change some code to get it to do what I want. I would like to make the smallest possible change …
4
votes
11answers
2k views
How do you add an int to a string in C++?
int i = 4;
string text = "Player ";
cout << (text + i);
I'd like it to cout "Player 4"
^ The above is obviously wrong but it shows what I'm trying to do here. Is there an e …
11
votes
10answers
13k views
Alternative to itoa() for converting integer to string C++?
I was wonding if there was an alternative to itoa() for converting an integer to a string because when I run it in visual Studio I get warnings, and when I compile my program under …
13
votes
14answers
10k views
C++ concatenate string and int
I thought this would be really simple but it's presenting some difficulties. If I have
string name = "John";
int age = 21;
How do I combine them to get a single string "John21"?
1
vote
8answers
779 views
Padding stl strings in C++
I'm using stl::string and need to left pad them to a given width. What is the recommended way to do this in C++?
Sample input: "123" pad to 10 characters.
Sample output: " …
7
votes
6answers
2k views
What’s the best way to trim std::string
I'm currently using the following code to right-trim all the std::strings in my programs:
std::string s;
s.erase(s.find_last_not_of(" \n\r\t")+1);
It works fine, but I wonder if …
6
votes
6answers
1k views
How do you construct a std::string with an embedded null?
If I want to construct a std::string with a line like:
std::string my_string("a\0b");
Where i want to have three characters in the resulting string (a, null, b), I only get one. …
7
votes
9answers
4k views
How do you convert a C++ string to an int?
How do you convert a C++ string to an int?
Assume you are expecting the string to have actual numbers in it ("1", "345", "38944", for example).
Also, let's assume you don't have …
2
votes
2answers
5k views
c++ integer->std::string conversion. Simple function? [closed]
I have an integer myInteger. myInteger needs to be converted to a stl::string type. In the past, I've used stringstream to do a conversion, and that's just kind of cumbersome. I kn …
7
votes
9answers
3k views
C++ strings: utf-8 or 16-bit encoding?
I'm still trying to decide whether my (home) project should use utf-8 strings (implemented in terms of std::string with additional utf-8-specific functions when necessary) or some …
1
vote
6answers
736 views
Is std::string size() a O(1) operation?
Is std::string size() a O(1) operation?
The implementation of STL I'm using is the one built into VC++
7
votes
10answers
1k views
Why don’t the std::fstream classes take a std::string?
This isn't a design question, really, though it may seem like it. (Well, okay, it's kind of a design question). What I'm wondering is why the C++ std::fstream classes don't take a …
6
votes
8answers
2k views
Convert a number to a string with specified length in C++
I have some numbers of different length (like 1, 999, 76492, so on) and I want to convert them all to strings with a common length (for example, if the length is 6, then those stri …
2
votes
9answers
856 views
if(str1==str2) versus if(str1.length()==str2.length() && str1==str2)
I've seen second one in another's code and I suppose this length comparison have been done to increase code productivity. It was used in a parser for a script language with a speci …
