![]() |
[c++] string into int?
Here is my delema, I scaned in a full line using getline, it would scan in something like 10:45 Pm, how can I take the 10 and put it into an int and then take the 45 and put it into another int? Thanks.
|
There is a function called printf or sprintf that can help you convert strings to in. Google "String to int" or "Convert string to int".
Google is a programmers second best friend, second only to java... |
The function atoi() turns a char* into an integer, with certain constraints.
There can be whitespace in front of the integer, but no alphabet characters. The number stops when a non-integer character is read. Valid strings to pass to atoi(): " 103a39" -> 103 "9438745" -> 9438745 "-394" -> -394 Invalid strings: "a5445a" ".25465" |
Something else you might want to consider, parsing out "10:45 pm" as a string and using strptime() to convert it to a time structure.
|
I didn't even know there was a time structure, i'll try it out, thanks
|
Use strtol().
(Error and sanity checks omitted) Code:
char *ptr = "10:45pm"; |
You could also use a stringstream:
Code:
#include <sstream> |
I think what you want is sscanf, which does the "opposite" what printf does
Something along the lines of (untested): sscanf(string, "%i:%i", &hour, &min); |
use sscanf, note: sscanf will return the number of tokens scanned.
CString sMyString = "10:45"; if (sscanf (sMyString, "%d:%d", &nHour, &nMinute) != 2) { // error } |
All times are GMT -8. The time now is 04:24 AM. |
Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project