Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

237
votes
27answers
256k views

How to split a string in C++?

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 functions or that kind of ...
58
votes
18answers
67k 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"?
52
votes
12answers
30k 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 there are some ...
45
votes
13answers
81k 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 Linux, it won't ...
15
votes
3answers
19k views

c++ integer->std::string conversion. Simple function?

Problem: I have an integer; this integer 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 know the C way is ...
15
votes
7answers
5k 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. What is the proper ...
14
votes
8answers
19k views

How do you convert a C++ string to an int? [closed]

Possible Duplicate: How to parse a string to an int in C++? How do you convert a C++ string to an int? Assume you are expecting the string to have actual numbers in it ("1", "345", ...
14
votes
8answers
4k 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 std::string in their ...
11
votes
9answers
12k 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 16-bit string ...
11
votes
14answers
27k views

How do you append 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 easy way to do this ...
9
votes
8answers
4k 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 strings will be: ...
9
votes
6answers
12k 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 in hopes of getting ...
8
votes
7answers
2k 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++
4
votes
4answers
16k views

I want to convert std::string into a const wchar_t *

Is there any method? My computer is AMD64, ::std::string str; BOOL loadU(const wchar_t* lpszPathName, int flag = 0); when I used: loadU(&str); the VS2005 compiler says: Error 7 error ...
2
votes
5answers
2k views

C++ std::string Constructor

any thoughts on this would be appreciated: std::string s1 = "hello"; std::string s2 = std::string(s1); I'd now expect these two strings to be independent, i.e. I could append ", world" to s2 and s1 ...
2
votes
9answers
1k 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 specific dictionary: ...
2
votes
6answers
2k views

bad_alloc error when using std::string

I'm currently working on a project that depends on me providing a path to a file (eg. C:\Path.pth). Now, I had everything working yesterday by calling my std::string with: std::string ...