Thread: convert string to int

  1. #1
    Registered User
    Join Date
    Feb 2005
    Posts
    7

    convert string to int

    I have this program where the user can enter commands, followed by either a string, or int, depends on which command asks for.

    so i store the input all into one string, then cut it into two strings command and input

    is there a simple way to convert a string of numbers into integers?

  2. #2
    Registered User hk_mp5kpdw's Avatar
    Join Date
    Jan 2002
    Location
    Northern Virginia/Washington DC Metropolitan Area
    Posts
    3,817
    Code:
    #include <sstream>
    #include <string>
    #include <iostream>
    
    int main()
    {
        std::string str = "123 456 789";
        std::stringstream sstr(str);
        int number;
    
        while( sstr >> number )
            std::cout << number << std::endl;
    
        return 0;
    }
    Output:
    Code:
    123
    456
    789
    "Owners of dogs will have noticed that, if you provide them with food and water and shelter and affection, they will think you are god. Whereas owners of cats are compelled to realize that, if you provide them with food and water and shelter and affection, they draw the conclusion that they are gods."
    -Christopher Hitchens

  3. #3
    Registered User
    Join Date
    Feb 2005
    Posts
    7
    thanks, worked perfectly

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. how to combine these working parts??
    By transgalactic2 in forum C Programming
    Replies: 0
    Last Post: 02-01-2009, 08:19 AM
  2. Replies: 8
    Last Post: 04-25-2008, 02:45 PM
  3. Debug Error Really Quick Question
    By GCNDoug in forum C Programming
    Replies: 1
    Last Post: 04-23-2007, 12:05 PM
  4. Half-life SDK, where are the constants?
    By bennyandthejets in forum Game Programming
    Replies: 29
    Last Post: 08-25-2003, 11:58 AM
  5. Quack! It doesn't work! >.<
    By *Michelle* in forum C++ Programming
    Replies: 8
    Last Post: 03-02-2003, 12:26 AM