Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

44
votes
10answers
3k views

What is the difference between str==NULL and str[0]=='\0' in C?

I want to know the difference between str == NULL and str[0] == '\0': int convert_to_float(char *str, double *num) { if ((str == NULL) || (str[0] == '\0')) return(-1); *num = ...
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. ...
11
votes
6answers
475 views

What is std::string::c_str() lifetime?

In one of my programs, I have to interface with some legacy code that works with const char*. Lets say I have a structure which looks like: struct Foo { const char* server; const char* name; }; ...
7
votes
3answers
102 views

(How) can I use the Boost String Algorithms Library with c strings (char pointers)?

Is it possible to somehow adapt a c-style string/buffer (char* or wchar_t*) to work with the Boost String Algorithms Library? That is, for example, it's trimalgorithm has the following declaration: ...
6
votes
6answers
2k views

How can I hash a string to an int using c++?

I have to write my own hash function. If I wanted to just make the simple hash function that maps each letter in the string to a numerical value (i.e. a=1, b=2, c=3, ...), is there a way I can perform ...
6
votes
6answers
3k 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 explanation would be great ...
6
votes
4answers
3k views

CSTRING to char *

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.GetBuffer(0) and this seems to work ( ...
5
votes
1answer
443 views

How do I convert an ATL/MFC CString to a QString?

Given the encoding of the project is probably Unicode (but not for sure) what is the best way of converting ATL::CString to QString? What I have thought of is this: CString c(_T("SOME_TEXT")); ...
5
votes
4answers
6k views

UTF-8, CString and CFile? (C++, MFC)

I'm currently working on a MFC program that specifically has to work with UTF-8. At some point, I have to write UTF-8 data into a file; to do that, I'm using CFiles and CStrings. When I get to write ...
5
votes
3answers
1k views

Which wide-character string structure do I use? CString vs wstring

I have an MFC application in C++ that uses std::string and std::wstring, and frequently casts from one to the other, and a whole lot of other nonsense. I need to standardize everything to a single ...
4
votes
6answers
160 views

Reversing a string, weird output c++

Okay, so I'm trying to reverse a C style string in C++ , and I'm coming upon some weird output. Perhaps someone can shed some light? Here is my code: int main(){ char str[] = "string"; ...
4
votes
6answers
170 views

Environment Variables are in a char* how to get it to a std::string

I am retrieving the environment variables in win32 using GetEnvironmentStrings(). It returns a char*. I want to search this string(char pointer) for a specific environmental variable (yes I know I ...
4
votes
4answers
710 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
5answers
202 views

NULL terminated string and its length

I have a legacy code that receives some proprietary, parses it and creates a bunch of static char arrays (embedded in class representing the message), to represent NULL strings. Afterwards pointers to ...
4
votes
2answers
175 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
7k views

iPhone stringWithCString is deprecated

I use this code to read data from sqlite database: keyFromSql = [NSString stringWithCString:(char *)sqlite3_column_text(preparedStatement, 1)]; but the compiler give me the warning wrote in the ...
4
votes
4answers
582 views

Returning c_str from a function

This is from a small library that I found online: const char* GetHandStateBrief(const PostFlopState* state) { static std::ostringstream out; ... rest of the function ... return ...
4
votes
4answers
336 views

Cannot modify C string

Consider the following code. int main(void) { char * test = "abcdefghijklmnopqrstuvwxyz"; test[5] = 'x'; printf("%s\n", test); return EXIT_SUCCESS; } In my opinion, this should ...
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
2answers
705 views

URL escaping MFC strings

How do you URL escape an MFC CString?
4
votes
20answers
3k 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, but to make it work ...
3
votes
2answers
49 views

Pointers and cstring length

I am setting pointers here one to point to name and one to point to name again but get the lenth. How come when i use cout << strlen(tail); it keeps telling me the lenth is 3? Even if i enter ...
3
votes
2answers
72 views

Breaking down string and storing it in array

i want to break down a sentence and store each string in an array. Here is my code: #include <stdio.h> #include <string.h> int main(void) { int i = 0; char* strArray[40]; char* ...
3
votes
2answers
101 views

Why do I get a complier warning for converting a string literal to a char*, is it bad?

So the compiler tells me this is a deprecated conversion from a string-literal to char*: char* myString = "i like declaring strings like this"; Should I be worried about this? Is this the wrong ...
3
votes
4answers
149 views

Stored value disappears when setting a struct pointer to null in C++

I'm writing a C++ application to do a word search across a large database of song lyrics. to start, I'm taking each word and putting it into a Word struct that looks like this: struct Word{ char* ...
3
votes
1answer
835 views

Matplotlib, alternatives to savefig() to improve performance when saving into a CString object?

I am trying to speed up the process of saving my charts to images. Right now I am creating a cString Object where I save the chart to by using savefig; but I would really, really appreciate any help ...
3
votes
1answer
127 views

Why does C's strcpy fail with doubly indexed arrays?

The following code seems to segfault and I cannot figure out why. #include <string.h> static char src[] = "aaa"; int main() { char* target[2] = {"cccc","bbbbbbbbbb"}; ...
3
votes
3answers
517 views

C++ CString equivalent in C#

What is the C# equivalent for MFC's CString?
3
votes
6answers
367 views

char* as an argument to a function in C

When passing a char* as an argument to a function, should the called function do a free on that string? Otherwise the data would be "lost" right and the program would leak data. Or are char* handled ...
3
votes
4answers
234 views

Having issues with initializing character array

Ok, this is for homework about hashtables, but this is the simple stuff I thought I was able to do from earlier classes, and I'm tearing my hair out. The professor is not being responsive enough, so I ...
3
votes
4answers
404 views

Help with \0 terminated strings in C#

I'm using a low level native API where I send an unsafe byte buffer pointer to get a c-string value. So it gives me // using byte[255] c_str string s = new string(Encoding.ASCII.GetChars(c_str)); ...
3
votes
3answers
2k views

c++ , getting the length of an array using strlen in g++ compiler

could someone explain why i am getting this error when i am compiling the source using following g++ compiler #include <cstdio> #include <string> using namespace std; int main() { ...
3
votes
4answers
279 views

Why is my char* writable and sometimes read only in C++

I have had really big problems understand the char* lately. Let's say I made a recursive function to revert a char* but depending on how I initialize it I get some access violations, and in my C++ ...
3
votes
8answers
247 views

Allocate room for null terminating character when copying strings in C?

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 doesn't seem like it should work, but when I ...
3
votes
2answers
418 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 ...
3
votes
8answers
485 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 "Quite a lo..." if my ...
2
votes
6answers
76 views

How to use Templates when working with std::strings and c-style strings?

I was just messing around with templates, when I tried to do this: template<typename T> void print_error(T msg) { #ifdef PLATFORM_WIN32 ::MessageBox(0, reinterpret_cast< LPCSTR ...
2
votes
1answer
70 views

Why a pointer to a char that is passed by value is not finding the null terminator?

I've been staring at this for a while now and I'm confused about what is happening in regards to my for loop. To start, I am having the user enter a phrase which is read using cin.getline() const ...
2
votes
4answers
118 views

convert/extract ints from a char array

I got a cstring, originating from a call from gzread. I know the data is blocks, each block is consisting of a unsigned int, char, int and unsigned short int. So I was wondering what the standard way ...
2
votes
1answer
79 views

How do I swap an MFC CString?

OK, so I'm all sold on the copy-and-swap idiom and I think I mostly know how to implement it. However, or codebase uses MFC's CString class as string and this ain't gonna change. Since swap must ...
2
votes
1answer
107 views

Expose Haskell-functions through foreign export ccall fails for CStrings

I made a short Haskell-program that exposes functions for C or Python. Followed http://www.haskell.org/ghc/docs/7.0.3/html/users_guide/ffi-ghc.html#ffi-library to the letter and that worked okay for ...
2
votes
3answers
112 views

when you push_back heap-allocated char into a vector in c++

I'm having trouble inserting char* into a vector< char*> When I do the following: string str = "Hello b World d" char *cstr, *p; vector<char*> redn; cstr = new char [ (str.size)+1 ]; ...
2
votes
0answers
195 views

How to parse a string in c++ [closed]

Possible Duplicate: How do I tokenize a string in C++? So I am trying to parse a string and remove each individual word and store it into a char*. Example: string theString = "The quick ...
2
votes
2answers
117 views

Traversing nested vectors of strings

There's an issue in my code with nested vectors of strings. It is not printing the strings. void foo(vector<vector<char const *> > const & vcp){ vector<vector<char const ...
2
votes
1answer
2k views

NSString cString is Deprecated. What is the alternative?

I've got another newbie question. I've written a piece of code that converts a NSString to NSMutableData in order to simulate a webService result. It turns out however that cString is deprecated. ...
2
votes
5answers
461 views

Remove the first part of a C String

I'm having a lot of trouble figuring this out. I have a C string, and I want to remove the first part of it. Let's say its: "Food,Amount,Calories". I want to copy out each one of those values, but ...
2
votes
2answers
242 views

C++ Delete array of c-strings/other type of array

[EDIT] Okay, so that makes sense, thank you sharptooth and CashCow. You can't delete data allocated as const, which makes string literals out of the question. So if I change my initialization to look ...
2
votes
4answers
2k views

How to remove first character from C-string?

Can anyone please help me? I need to remove the first character from a char * in C. For example, char * contents contains a '\n' character as the first character in the array. I need to detect and ...
2
votes
2answers
158 views

What techniques are available to test if a character string is all spaces?

char *p = " woohoo"; int condition = /* some calculation applied to p */ /* to look for all 0x20/blanks/spaces only */ if (condition) { } else { printf("not "); } ...
2
votes
2answers
275 views

Const char conversion error

I am getting the following error with gcc. invalid conversion from ‘char**’ to ‘const char**’ With this code. void foo( const int &argc, const char **argv ); int main( int argc, char *argv[] ...

1 2 3 4