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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T17:50:48+00:00 2026-05-12T17:50:48+00:00

I need a way to create a string of n chars. In this case

  • 0

I need a way to create a string of n chars. In this case ascii value zero.

I know I can do it by calling the constructor:

string sTemp(125000, ‘a’);

but I would like to reuse sTemp in many places and fill it with different lengths.

I am calling a library that takes a string pointer and length as an argument and fills the string with bytes. (I know that technically string is not contiguous, but for all intents and purposes it is, and will likly become the standard soon). I do NOT want to use a vector.

is there some clever way to call the constructor again after the string has been created?

  • 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-12T17:50:49+00:00Added an answer on May 12, 2026 at 5:50 pm

    The string class provides the method assign to assign a given string a new value. The signatures are

    1. string& assign ( const string& str );
    2. string& assign ( const string& str, size_t pos, size_t n );
    3. string& assign ( const char* s, size_t n );
    4. string& assign ( const char* s );
    5. string& assign ( size_t n, char c );
    6. template <class InputIterator> 
         string& assign ( InputIterator first, InputIterator last );
    

    Citing source: cplusplus.com (I recommend this website because it gives you a very elaborated reference of the C++ standard libraries.)

    I think you’re looking for something like the fifth one of these functions: n specifies the desired length of your string and c the character filled into this string. For example if you write

    sTemp.assign(10, 'b');
    

    your string will be solely filled with 10 b’s.

    I originally suggested to use the STL Algorithm std::fill but thus your string length stays unchanged. The method string::resize provides a way to change the string’s size and fills the appended characters with a given value — but only the appended ones are set. Finally string::assign stays the best approach!

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

Sidebar

Related Questions

No related questions found

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.