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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T05:16:30+00:00 2026-05-12T05:16:30+00:00

Is there any way to have multi-line plain-text, constant literals in C++, à la

  • 0

Is there any way to have multi-line plain-text, constant literals in C++, à la Perl?
Maybe some parsing trick with #includeing a file?

I know you can do it with raw strings in C++11.

  • 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-12T05:16:30+00:00Added an answer on May 12, 2026 at 5:16 am

    Well … Sort of. The easiest is to just use the fact that adjacent string literals are concatenated by the compiler:

    const char *text =
      "This text is pretty long, but will be "
      "concatenated into just a single string. "
      "The disadvantage is that you have to quote "
      "each part, and newlines must be literal as "
      "usual.";
    

    The indentation doesn’t matter, since it’s not inside the quotes.

    You can also do this, as long as you take care to escape the embedded newline. Failure to do so, like my first answer did, will not compile:

    const char *text2 =
      "Here, on the other hand, I've gone crazy \
    and really let the literal span several lines, \
    without bothering with quoting each line's \
    content. This works, but you can't indent.";
    

    Again, note those backslashes at the end of each line, they must be immediately before the line ends, they are escaping the newline in the source, so that everything acts as if the newline wasn’t there. You don’t get newlines in the string at the locations where you had backslashes. With this form, you obviously can’t indent the text since the indentation would then become part of the string, garbling it with random spaces.

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

Sidebar

Related Questions

I have a DIV with a multi-line paragraph. Is there any way (maybe using
Is there any way to have a label wordwrap text as needed? I have
In WPF, is there any way to have the Text property of a TextBlock
Is there any way to make multi line strings that doesn't try to evaluate
Is there any way to have to tabcontrol take the size of the largest
Is there any way to have a default MessageBox.Show() caption? Let says I would
Is there any way to have a template inherit another template? I'm not using
Is there any way to have a code that opens a PDF file in
Is there any way to have this: [one[two]][three] And extract this with a regex?
In an application that has multiple webviews, is there any way to have the

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.