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 6872595
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T03:56:57+00:00 2026-05-27T03:56:57+00:00

I try to include unsigned char variable into std::string.it throws compiletime error. unsigned char*

  • 0

I try to include unsigned char variable into std::string.it throws compiletime error.

unsigned char* SrvName;
std::string m_sSMTPSrvName;
//srvName contains "207.45.255.45"

m_sSMTPSrvName.insert(0, SrvName);

Error

   error C2664: 'std::basic_string<_Elem,_Traits,_Ax> &std::basic_string<_Elem,_Traits,_Ax>::insert(unsigned int,const std::basic_string<_Elem,_Traits,_Ax> &)' : cannot convert parameter 2 from 'const unsigned char *' to 'const std::basic_string<_Elem,_Traits,_Ax> &'
  • 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-27T03:56:58+00:00Added an answer on May 27, 2026 at 3:56 am

    Why do you use unsigned char* in the first place?

    Anyway, if SrvName is null-terminated, you can do:

        std::string m_sSMTPSrvName=reinterpret_cast<const char*>(SrvName);
    

    Or if you know SrvName‘s length, you can do:

        std::string m_sSMTPSrvName(SrvName, SrvName + Length);
    

    EDIT:

    After reading your new comment, looks like what you actually want is to convert the numbers in the array to a string that represents an IP address. You can do it this way:

    #include <sstream>
    
    for (int i = 0; i < 4; i++)
    {
        std::stringstream out;
        out << (int)SrvName[i];
        m_sSMTPSrvName += out.str();
    
        if (i < 3)
        {
            m_sSMTPSrvName += ".";
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I try to convert a unsigned long into a character string, appending a comma
I've try to compile this code: #include <iostream> #include <cstdlib> using namespace std; #define
I try to use _tcstoul for string to unsigned long conversion. However, it doesn't
When I try to include a file using include_once in php which shows warning
anyone knows why this does not work when I try to include a library
I'm using ASP.Net and whenever I create a script file or try to include
Compiling a file that uses OpenGL with Visual C++, when I try to include
I try to compile code, that beggins with: #include<stdlib.h> #include<GL/gl.h> #include<glaux.h> with command: cc
I've included: #import QuartzCore/QuartzCore.h but when I try to build, I get the error
i try to givee style via GridView.css into Masterpage my masterpage includes 3 pages

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.