Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know how to convert a character array containing numbers to an integer using iostream:

char[] ar = "1234";
int num;
ar >> num;

but how would I convert the last four characters of that array to an int?

char[] ar = "sl34nfoe11intk1234";
int num;
????;

Is there a way to point to an element in the array and start streaming from there?
Ideally I would start streaming from max array size - 4.

share|improve this question
5  
Are you sure ar >> num is valid C++ code? Seems like you forgot the stringstream. – Christian Rau Aug 27 '11 at 19:24
3  
char[] ar is not valid C++ either. – wilhelmtell Aug 27 '11 at 19:28
@Christian, man, you can simply tell him he is wrong. :) He must be a beginner, who doesnt know operations on strings too.. – Ajeet Aug 27 '11 at 19:54

3 Answers

up vote 5 down vote accepted
char* p = ar + strlen(ar) - 4;

Now p points to the '1' of "1234", and you can feed p into the stream.

share|improve this answer
daaamn you good – stack356 Aug 27 '11 at 21:30
char ar[] = "abc1234";
std::istringstream ss(ar + 3);
int n = 0;
ss >> n;

Better yet, use std::string:

std::string ar("abc1234");
std::istringstream ss(ar.substr(ar.size() - 4));
share|improve this answer
thanks good example – stack356 Aug 27 '11 at 21:31

What about

char[] ar = "sl34nfoe11intk1234";
int num;
(ar + strlen(ar) - 4) >> num;
share|improve this answer
1  
Seems you just copied his error (forgetting the stream). – Christian Rau Aug 27 '11 at 19:26
I assumed that his first example was working. (Using some implicit declaration, since he knew how to...) My point as others also has stated: increase the pointer to the forth last char. – erikH Aug 27 '11 at 19:36
thanks for resp – stack356 Aug 27 '11 at 21:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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