6
votes
4answers
5k views
How to Convert CString and ::std::string ::std::wstring to each other?
CString is quit 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 wish I could convert CS …
5
votes
4answers
580 views
CSTRING to char *
Hi All,
We are using the CString class throughout most of our code. However sometimes we need to convert to a char *. at the moment we have been doing this using variable.GetBuffe …
4
votes
3answers
414 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 incre …
4
votes
20answers
2k views
How would you improve this algorithm? (c string reversal)
Working through some programming interview challenges I found online, I had to write an algorithm to reverse a const char * and return a pointer to a new char *. I think I have it, …
3
votes
8answers
177 views
Allocate room for null terminating character when copying strings in C?
Hello, so say I have this:
const char* src = "hello";
Calling strlen(src); returns size 5...
Now say I do this:
char* dest = new char[strlen(src)];
strcpy(dest, src);
That …
3
votes
4answers
129 views
CStringT to char[]
I'm trying to make changes to some legacy code. I need to fill a char[] ext with a file extension gotten using filename.Right(3). Problem is that I don't know how to convert from …
3
votes
8answers
219 views
Avoiding memory leaks while mutating c-strings
For educational purposes, I am using cstrings in some test programs. I would like to shorten strings with a placeholder such as "...".
That is, "Quite a long string" will become " …
2
votes
8answers
204 views
simple string runtime error in C?
This code compiles fine but give segmentation fault error while running? Can anyone tell why?
#include <stdio.h>
#include <string.h>
#include <math.h>
int main( …
2
votes
2answers
159 views
URL escaping MFC strings
How do you URL escape an MFC CString?
2
votes
6answers
928 views
string array with garbage character at end
I have a char array buffer that I am using to store characters that the user will input one by one. My code below works but has a few glitches that I can't figure out:
when I ex …
1
vote
2answers
64 views
Link error CString
I'm getting a linker error using CString the error is:
error LNK2001: unresolved external symbol "private: static class ATL::CStringT<wchar_t,class StrTraitMFC<wchar_t,class …
1
vote
6answers
314 views
How is std::string implemented ?
I am curious to know how std::string is implemented and how does it differ from c string?If the standard does not specify any implementation then any implementation with explanatio …
1
vote
5answers
188 views
Writing into c-string
Hi, my code segfaults and I don't know why.
1 #include <stdio.h>
2
3 void overwrite(char str[], char x) {
4 int i;
5 for (i = 0; str[i] != '\0'; i++)
6 st …
1
vote
2answers
145 views
Why does the original CString get overwritten when passing a copy to the DrawText function with the DT_MODIFYSTRING option?
I've already found a workaround to this problem, but was just wondering if anyone knew what was actually happening to cause the problem I was seeing. My guess is that it has somet …
1
vote
5answers
260 views
Best way to find a whitespace-delimited word in a CString
example: "select * from somewhere where x = 1"
I want to find the whitespace-delimited "where", but not the "where" within "somewhere". In the example "where" is delimited by spac …
