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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T17:17:10+00:00 2026-05-15T17:17:10+00:00

This STR="Hello\nWorld" echo $STR produces as output Hello\nWorld instead of Hello World What should

  • 0

This

STR="Hello\nWorld"
echo $STR

produces as output

Hello\nWorld

instead of

Hello
World

What should I do to have a newline in a string?

Note: This question is not about echo.
I’m aware of echo -e, but I’m looking for a solution that allows passing a string (which includes a newline) as an argument to other commands that do not have a similar option to interpret \n‘s as newlines.

  • 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-15T17:17:10+00:00Added an answer on May 15, 2026 at 5:17 pm

    If you’re using Bash, you can use backslash-escapes inside of a specially-quoted $'string'. For example, adding \n:

    STR=$'Hello\nWorld'
    echo "$STR" # quotes are required here!
    

    Prints:

    Hello
    World
    

    If you’re using pretty much any other shell, just insert the newline as-is in the string:

    STR='Hello
    World'
    

    Bash recognizes a number of other backslash escape sequences in the $'' string. Here is an excerpt from the Bash manual page:

    Words of the form $'string' are treated specially. The word expands to
    string, with backslash-escaped characters replaced as specified by the
    ANSI C standard. Backslash escape sequences, if present, are decoded
    as follows:
          \a     alert (bell)
          \b     backspace
          \e
          \E     an escape character
          \f     form feed
          \n     new line
          \r     carriage return
          \t     horizontal tab
          \v     vertical tab
          \\     backslash
          \'     single quote
          \"     double quote
          \nnn   the eight-bit character whose value is the octal value
                 nnn (one to three digits)
          \xHH   the eight-bit character whose value is the hexadecimal
                 value HH (one or two hex digits)
          \cx    a control-x character
    
    The expanded result is single-quoted, as if the dollar sign had not
    been present.
    
    A double-quoted string preceded by a dollar sign ($"string") will cause
    the string to be translated according to the current locale. If the
    current locale is C or POSIX, the dollar sign is ignored. If the
    string is translated and replaced, the replacement is double-quoted.
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string: string str = "hello"; And an array: string[] myarr =
let's say I have a string like this: $str = "{aaa,aa,a,aaaaaaaa,aaaaaaa,aaaaaaa}"; I want to
For example, I have a string variable named str. This str has a value
I have this virtual method: const string& my_class::to_string() const { string str(this->name + string(
Let's say I have a string like this: var str = /abcd/efgh/ijkl/xxx-1/xxx-2; How do
i have an error in this code NSString *str = @above string; //load above
I have the following string: const char *str = \This is just some random
I have a List<string> that has some items like this: {"Pre Mdd LH", "Post
say I have the following string: "Hello there. My name is Fred. I am
I have this code which calculates the sum of "letter numbers" in a string,

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.