vote up 2 vote down star

How to convert a CString to integer in MFC (VC++ 6.0)

flag

3 Answers

vote up 4 vote down

The simplesr approach is to use the atoi() function found in stdlib.h:

CString s = "123";
int x = atoi( s );

However, this does not deal well with the case where the string does not contain a valid integer, in which case you should investigate the strtol() function:

CString s = "12zzz";    // bad integer
char * p;
int x = strtol ( s, & p, 10 );
if ( * p != 0 ) {
   // s does not contain an integer
}
link|flag
vote up 1 vote down

you can also use good old sscanf.

CString s;
int i;
int j = _stscanf(s, _T("%d"), &i);
if (j != 1)
{
   // tranfer didn't work
}
link|flag
vote up 0 vote down
CString s;
int i;
i = _wtoi(s); // if you use wide charater formats
i = _atoi(s); // otherwise
link|flag
You need to do something with the return values of those functions for this code to be useful. – Neil Butterworth Jun 14 at 14:09
Yes, you are of course correct. – PaV Jun 14 at 14:48

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.