Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8978785
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T19:41:38+00:00 2026-06-15T19:41:38+00:00

Possible Duplicate: Convert string to int C++ What’s the fastest way to check if

  • 0

Possible Duplicate:
Convert string to int C++
What’s the fastest way to check if a string is a number?

I need to convert string to int and I need to know if converting was successful. But number can be zero, so I can’t use atoi and others. String to convert I read from file.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T19:41:39+00:00Added an answer on June 15, 2026 at 7:41 pm

    you can use this template function, but this is not just for converting a string to an int – it is to convert a string to every type:

    template <typename T>
    T ConvertString( const std::string &data )
    {
      if( !data.empty( ))
      {
        T ret;
        std::istringstream iss( data );
        if( data.find( "0x" ) != std::string::npos )
        {
          iss >> std::hex >> ret;
        }
        else
        {
          iss >> std::dec >> ret;
        }
    
        if( iss.fail( ))
        {
          std::cout << "Convert error: cannot convert string '" << data << "' to value" << std::endl;
          return T( );
        }
        return ret;
      }
      return T( );
    }
    

    If you want to now if the convert was successfull, then return a specific value in the if iss.fail() or pass a second reference argument to the function and set the value to false if it failed.

    You can use it like this:

    uint16_t my_int = ConvertString<uint16_t>("15");
    

    If you like the solution with the reference argument, here an example:

    #include <iostream>
    #include <sstream>
    #include <string>
    
    #include <inttypes.h>
    
    template <typename T>
    T ConvertString(const std::string &data, bool &success)
    {
      success = true;
      if(!data.empty())
      {
        T ret;
        std::istringstream iss(data);
        if(data.find("0x") != std::string::npos)
        {
          iss >> std::hex >> ret;
        }
        else
        {
          iss >> std::dec >> ret;
        }
    
        if(iss.fail())
        {
          success = false;
          return T();
        }
        return ret;
      }
      return T();
    }
    
    int main(int argc, char **argv)
    {
      bool convert_success;
      uint16_t bla = ConvertString<uint16_t>("15", convert_success);
      if(convert_success)
        std::cout << bla << std::endl;
      else
        std::cerr << "Could not convert" << std::endl;
      return 0;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Easiest way to convert int to string in C++ How can I
Possible Duplicate: Easiest way to convert int to string in C++ Does anyone know
Possible Duplicate: How can I convert String to Int? public List<int> GetListIntKey(int keys) {
Possible Duplicate: Simple way to repeat a String in java How can I convert
Possible Duplicate: how can I convert String to Int ? Hi, I have the
Possible Duplicate: Converting Unicode strings to escaped ascii string How can I convert ä...
Possible Duplicate: Convert a String to Number - Java String s=1,000.0; how can I
Possible Duplicate: How can I convert String to Int? how can i change queryString
Possible Duplicate: Easiest way to convert int to string in C++ I have a
Possible Duplicate: Converting string to integer C I wanted to convert a number I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.