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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T03:36:15+00:00 2026-05-23T03:36:15+00:00

I want to read user input, something like here : char *text = new

  • 0

I want to read user input, something like here :

char *text  = new char[20] ;
cin >> text ;

but if the user enters “hello”, I want my other empty characters to be filled with space or -, something like:

"hello------------------------"

How can I do this?

  • 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-23T03:36:15+00:00Added an answer on May 23, 2026 at 3:36 am

    There’s no standard and fast way to do this. I can think of some options.


    Suppose we have:

    char *text  = new char[20];
    cin >> text;
    

    Note – we need to know that the capacity is 20! I’d recommend you to use some constant for this, especially if this will be used for other strings, too.


    Okay, first option – use std::stringstream

    std::stringstream ss;
    ss << setw( 20 - 1 ) << setfill( '-' ) << text;
    //            ^^^^ we need one byte for the '\0' char at the end
    ss >> text;
    

    But this is rather slow.


    Fill the chars by hand:

    int length = strlen( text );
    for( int i = length; i < 20 - 1; ++i ) // again - "20-1" - '\0'
    {
        text[ i ] = '-';
    }
    text[ 20 - 1 ] = '\0'; // don't forget to NULL-terminate the string
    

    And the best way, according to me – get rid of these char* things (you have tagged the question as c++ ) and just use std::string.

    std::string sText;
    std::cin >> sText;
    sText.resize( 20, '-' ); // NOTE - no need to NULL-terminate anything
    

    Voilà! (:

    This way is much more clear and you don’t need to carry about using delete[] text; at the end (which is not that trivial sometimes, especially in case of some exception before delete[] – this will give you 100% memory leak. Of course, you can always use smart pointers.. but smart pointers for this?! 🙂 )


    Of course, you can write 19 instead of 20-1, I just wanted to “highlight” the -1, in case that you use some constant.

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

Sidebar

Related Questions

I have a text file. I want read that file. But In that if
Writing a bash script, and I want to get user input. Awesome, read -p
I want to read user input in Python to get a url (e.g. http://www.google.com
I want to read input from user using C program. I don't want to
i have this function pymssql.connect(host=my host,user=my user,password=my pass,database=mydb) I want to read the user
I need to read the user's fingerprint from my application. What I really want
I want to read the contents of a URL but don't want to hang
In my interface I have a list of text boxes, something like this :
I want to display something like 2010-10-20 by Mary in the h:outputText. The date
I'm using the following code to try to read an input from user and

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.