User profile: socaldavec

User info
User name:socaldavec
Name:Dave Cone
Location:Riverside, CA
Website:http://WaSupG.Com
Bio:I'm 30 (still)....

Going back to school... taking PHP, Javascript, and C++ (intro to object oriented programming)...

I already know PHP and Javascript pretty well... This c++ stuff frustrates me, because I know what I should be able to do, but often can't get things working as I like.
History
Joined:
Number of posts:2
Latest posts:

Parsing a string of integers into multiple integers
[quote]You could use C++11's std::to_string or [code] std::stringstream ss; ss << 32; // T...

Parsing a string of integers into multiple integers
I have a string "n,n,n" where each n is a value 0 to 19. I know I can use find(), substr(), and ...