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

  • Home
  • SEARCH
  • 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 7579653
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T17:43:34+00:00 2026-05-30T17:43:34+00:00

I have a string which actually contains a number and a string, separated by

  • 0

I have a string which actually contains a number and a string, separated by ,, for instance "12,fooBar".

I would like to put it into separated variables, i.e. the number into unsigned int myNum and the string into std::string myStr.

I have the following snipped of code:

size_t pos1=value.find(',');
std::cout << value.substr(0, pos1) << " and " 
          << (value.substr(0, pos1)).c_str() << std::endl;

This yields 12 and 1. Anything I missed here? What happend to the 2 in the second part?

Note: I isolated the problem to this snipped of code. I need c_str() to pass it to atoi to get the unsigend int. Here I don’t want to print the second part.

Update: I actually get the string from levelDB Get. If I put a test string like I put here, it works.

  • 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-05-30T17:43:36+00:00Added an answer on May 30, 2026 at 5:43 pm

    The posted code produces the same substring: value.substr(0, pos1). Note that std::string::substr() does not modify the object, but returns a new std::string.

    Example:

    #include <iostream>
    #include <string>
    
    int main ()
    {
        std::string value ="12,fooBar";
        unsigned int myNum;
        std::string myStr;
    
        const size_t pos1 = value.find(',');    
        if (std::string::npos != pos1)
        {
            myNum = atoi(value.substr(0, pos1).c_str());
            myStr = value.substr(pos1 + 1);
        }
    
        std::cout << myNum << " and " 
                  << myStr << std::endl;
    
        return 0;
    }
    

    Output:

    12 and fooBar

    EDIT:

    If the unsigned int is the only piece required then the following will work:

    unsigned int myNum = atoi(value.c_str());
    

    as atoi() will stop at the first non-digit character (excluding optional leading - or +), in this case the ,.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a String which I would like to modify in some way. For
I have to cut a unicode string which is actually an article (contains sentences)
I have a MySQL table in which a column contains string prefixes. For instance
I have a string which is like this: this is "a test" I'm trying
I have a String which contains XML nodes within it, and am seeking to
I have a string which contains the text of an article. This is sprinkled
Problem I have a file which contains such text (nothing else) 2010-10-05 I would
Many USB devices contain a unique serial number (which is actually a Unicode string)
I have a string which contain tags in the form < tag > .
I have a string which starts with //#... goes upto the newline characater. 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.