Tagged Questions
std::string is the C++ standard library's byte-based "string" type, defined in the <string> header.
22
votes
4answers
653 views
std::string with no free store memory allocation
I have a question very similar to
How do I allocate a std::string on the stack using glibc's string implementation?
but I think it's worth asking again.
I want an std::string with local ...
17
votes
5answers
26k views
How to convert CString and ::std::string ::std::wstring to each other?
CString is quite handy, while std::string is more compatible with STL container.
I am using hash_map. However, hash_map does not support CString as key, so I want to convert CString into std::string.
...
16
votes
13answers
12k views
C++ char* vs std::string
When I use std::string and when char* to manage arrays of chars in C++?
It seems you should use char* if performance(speed) is crucial and you're willing to accept some of a risky business because of ...
14
votes
3answers
4k views
How to replace all occurrences of a character in string?
What is the effective way to replace all occurrences of a character with another character in std::string?
12
votes
1answer
494 views
Setting an std::string variable value from gdb?
Is it possible... when the debugger is stopped at a breakpoint, to modify the value of a std::string variable without resorting to hacks like tweaking the memory image of the current buffer?
e.g. ...
11
votes
5answers
13k views
convert a char* to std::string
I need to use std::string to store data retrieved by fgets(). To do this I need to convert fgets() char* output into an std::string to store in an array. How can this be done?
10
votes
2answers
795 views
Using a std::string iterator to find the start and end of it's string
Given just a std::string iterator, is it possible to determine the start and end points of the string? Supposing that I don't have access to the string object and so cannot call string.begin() and ...
9
votes
3answers
1k views
What's the difference between std::string::c_str and std::string::data?
Why would I ever want to call std::string::data() over std::string::c_str()? Surely there is some method to the standard's madness here...
8
votes
3answers
4k views
How to convert std::string to NSString?
Hi I am trying to convert a standard std::string into a NSString but i'm not having much luck
I can convert successfully from an NSString to a std::string with the following code
NSString *realm = ...
7
votes
5answers
410 views
How to replace all occurrences of one character with two characters using std::string?
Is there a nice simple way to replace all occurrences of "/" in a string with "\/" to escape all the slashes in a std::string?
6
votes
4answers
187 views
In C++, what's the fastest way to replace all occurrences of a substring within a string with another string?
I'm looking for the most efficient (in terms of "fastest") way to replace all occurrences of a substring within a string with another string. All I've came up with so far is:
std::string ...
6
votes
3answers
756 views
How to properly return std::string (or how to properly use that returned value)
Say you have a class wich is a global (e.g. available for the runtime of the app)
class MyClass {
protected:
std::string m_Value;
public:
MyClass () : m_Value("hello") {}
std::string ...
6
votes
8answers
6k views
Padding stl strings in C++
I'm using std::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:
123
(7 spaces, ...
5
votes
4answers
96 views
how does std::string manages this trick?
i just wrote a function:
void doSomeStuffWithTheString(const std::string& value) {
...
std::string v = value;
std::cout << value.c_str();
...
}
but then i call this with
...
5
votes
2answers
179 views
Specific behaviour of std::string on visual studio?
I've got a project in which I need to read/write large files.
I've decided to use ifstream::read() to put those files into memory in one single pass, into an std::string.
(that seems to be the ...
5
votes
3answers
181 views
Length of a C++ std::string in bytes
I'm having some trouble figuring out the exact semantics of std::string.length().
The documentation explicitly points out that length() returns the number of characters in the string and not the ...
5
votes
5answers
2k views
C++ Program Always Crashes While doing a std::string assign
I have been trying to debug a crash in my application that crashes (i.e. asserts a
* glibc detected free(): invalid pointer: 0x000000000070f0c0 **) while I'm trying to do a simple assign to a ...
5
votes
5answers
737 views
Does “&s[0]” point to contiguous characters in a std::string?
I'm doing some maintenance work and ran across something like the following:
std::string s;
s.resize( strLength );
// strLength is a size_t with the length of a C string in it.
memcpy( ...
5
votes
3answers
484 views
Why isn't std::string::max_size() == std::string::allocator::max_size()
Recently I've noticed that the following statement is not true given std::string s.
s.max_size() == s.get_allocator().max_size();
I find this interesting, by default std::string will use ...
5
votes
6answers
2k views
How do I allocate a std::string on the stack using glibc's string implementation?
int main(void)
{
std::string foo("foo");
}
My understanding is that the above code uses the default allocator to call new. So even though the std::string foo is allocated on the stack the ...
4
votes
4answers
707 views
MFC: std::string vs CString?
Using C++ with MFC. Coming from a C# background I typically just use string for all, well, strings. I use them for class members, method parameters, and method return values.
Now in C++ I've got ...
4
votes
2answers
174 views
Is std::string a better idea than char* when you're going to have to pass it as a char*?
In a recent question, I learned that there are situations where you just gotta pass a char* instead of a std::string. I really like string, and for situations where I just need to pass an immutable ...
4
votes
2answers
530 views
Reference-counting of std::string
I'm looking at the code for basic_string (that is bundled with g++ 4.2.1). The copy constructor makes use of a grab() function to "grab" a copy of a string (increment its reference-count):
_CharT* ...
4
votes
4answers
392 views
Can a std::string contain embedded nulls?
For regular C strings, a NULL signifies the end of data.
What about std::string, can I have a string with embedded NULLS?
4
votes
3answers
1k views
Avoiding improper std::string initialization with NULL const char* using g++
A there any g++ options which can detect improper initialization of std::string with NULL const char*?
I was in the process of turning some int fields into std::string ones, i.e:
struct Foo
{
...
4
votes
4answers
1k views
How do I convert a “pointer to const TCHAR” to a “std::string”?
I have a class which returns a typed pointer to a "const TCHAR". I need to convert it to a std::string but I have not found a way to make this happen.
Can anyone provide some insight on how to ...
4
votes
3answers
1k views
C++ difference between automatic type conversion to std::string and char*
As a learning exercise, I have been looking at how automatic type conversion works in C++. I know that automatic type conversion should generally be avoided, but I'd like to increase my knowledge of ...
4
votes
6answers
1k views
How to force std::stringstream operator >> to read an entire string?
How to force std::stringstream operator >> to read an entire string instead of stopping at the first whitespace?
I've got a template class that stores a value read from a text file:
template ...
4
votes
8answers
2k views
How do I construct a std::string from a DWORD?
I have following code:
Tools::Logger.Log(string(GetLastError()), Error);
GetLastError() returns a DWORD a numeric value, but the constructor of std::string doesn't accept a DWORD.
What can I do?
3
votes
4answers
124 views
C++ copy std::string to char array with no null termination
I am writing to a binary file using a struct that just contains a char[32]. I basically need to format each block of data by performing various calculations on string arrays and concatenating the ...
3
votes
5answers
175 views
C++: Correct implementation for passing a std::string to a C function that wants to change the string?
I have a function in a third-party library written in C: char* fix_filename_slashes(char* path). This function expects a mutable C-string passed to it so it can change all the slashes in the path to ...
3
votes
1answer
128 views
NSString weakly holding const char * of std::string
What's the safest way for a NSString to weakly contain a const char * belonging to a std::string? Both examples below work on a simple test, in logs, and as presented in a NSTableView, but I'm ...
3
votes
4answers
322 views
When I send and convert std string with win32 SendMessage I'm getting weird characters
I need to append text to win32 edit control i have working function to do this , but the text that printed in the edit control is gibrish why ?
the sample code taken from microsoft example from here
...
3
votes
3answers
449 views
How can I format a std::string using a collection of arguments?
Is it possible to format std::string passing a set of arguments?
Currently I am formatting the string this way:
string helloString = "Hello %s and %s";
vector<string> tokens; //initialized ...
3
votes
3answers
337 views
Avoid copying a map's key without raw pointers
Every time you insert a pair in a std::map whose key is a std::string, it makes two copies. You can avoid using raw pointers but it is exception-unsafe. Is there some way to use a smart pointer ...
3
votes
1answer
122 views
Why is my MD5 value printing with extra “f” characters?
I have strange problem when using at() method of std::string. I'd like to calculate md5 hash for given string using this library: http://sourceforge.net/projects/libmd5-rfc/files/
Hash is calculated ...
3
votes
0answers
157 views
No “add esp,4” for virtual functions returning std::string
I've been looking at DynObj and decided to do my own experimentation with vftables. I'm working with Visual Studio 2010 and created a console main that instantiates an object with a virtual function ...
3
votes
4answers
188 views
segfault when trying to access a string member of a class
I have a class Message that has a std::string as a data member, defined like this:
class Message
{
// Member Variables
private:
std::string text;
(...)
// Member Functions
...
3
votes
1answer
515 views
Managed c++ std::string not accessible in unmanaged c++
In unmanaged c++ dll i have a function which takes constant std::string as argument
Prototype : void read ( const std::string &imageSpec_ )
I call this function from managed c++ dll by passing ...
3
votes
2answers
835 views
QT how to use std::string in a QLineEdit
I have the following problem. I am trying to integrate a large code written by me with a QT interface. Some of my functions return std::string; I did not succeed in making setText accept them (other ...
3
votes
8answers
3k views
convert string to argv in c++
I have an std::string containing a command to be executed with execv, what is the best "C++" way to convert it to the "char *argv[]" that is required by the second parameter of execv()?
To clarify:
...
2
votes
1answer
36 views
constexpr with string operations workaround?
This previously answered question explains why the code I have posted below does not work. I have a follow-up question: is there a workaround that is conceptually equivalent, i.e., achieves ...
2
votes
3answers
81 views
std::string as a key in std::map using a compare operator
I'm trying to use a std::string as a key in a std::map however, i'm unable to find() correctly. My code is somewhat complicated and large so this is a small program that demonstrates the problem I'm ...
2
votes
5answers
71 views
Strange behaviour on string::size() in C++ when multiplied by a negative integer
Running this code:
#include <string>
#include <iostream>
using namespace std;
int main() {
string a = "Hello, world!";
cout << (-1)*a.size() << endl;
}
I get:
...
2
votes
5answers
93 views
What is the reasoning behind the different return types in string::insert?
Click here to see the functions. As you can see, all but the last three return a reference to the string. The 3rd last overload returns an iterator, which I am guessing (I may be wrong...) is because ...
2
votes
3answers
159 views
How to efficiently copy a std::vector<char> to a std::string
This question is a flip side of this How to efficiently copy a std::string into a vector
I typically copy the vector this way ( null terminated string )
std::string s((char*)&v[0]);
or ( if ...
2
votes
1answer
44 views
Method to automatically detect cases of incorrect find_first_of() and family
I am working on a software project and have found numerous examples where find_first_of(), find_first_not_of(), find_last_of(), and find_last_not_of() are incorrectly used. These std::string methods ...
2
votes
4answers
202 views
C++ How to calculate the number time a string occurs in a data
I want to measure the following two things:
How many times a comma appears in a
std::std, e.g. if str ="1,2,3,4,1,2,"
then str.Count(',') returns me 6 in case of above
string
The second thing is ...
2
votes
3answers
154 views
Comparing std::string with constants vs comparing char arrays with constants In C++
I am trying to make a little text adventure to get a handle on C++.
cin >> keyboard1;
if ((keyboard1 == "inv")inventory(inv);
This will work if keyboard1 is a string, but won't if it's a ...
2
votes
2answers
901 views
Can anybody give me a working example of generating a SHA256 hash in C++ with Crypto++, taking a string as input and outputting a string?
I need an example of how to use Crypto++ to generate a SHA256 hash from a std::string and output a std::string. I can't seem to figure it out. Everything I've tried gives me invalid output.
Here's ...