R - do I need to add explicit new line character with print()?

RPrintingNewline

R Problem Overview


How do I use the new line character in R?

myStringVariable <- "Very Nice ! I like";

myStringVariabel <- paste(myStringVariable, "\n", sep="");

The above code DOESN'T work

P.S There's significant challenges when googling this kind of stuff since the query "R new line character" does seem to confuse google. I really wish R had a different name.

R Solutions


Solution 1 - R

The nature of R means that you're never going to have a newline in a character vector when you simply print it out.

> print("hello\nworld\n")
[1] "hello\nworld\n"

That is, the newlines are in the string, they just don't get printed as new lines. However, you can use other functions if you want to print them, such as cat:

> cat("hello\nworld\n")
hello
world

Solution 2 - R

You can also use writeLines.

> writeLines("hello\nworld")
hello
world

And also:

> writeLines(c("hello","world"))
hello
world

Solution 3 - R

Example on NewLine Char:

for (i in 1:5)
  {
   for (j in 1:i)
    {
     cat(j)
    }
    cat("\n")
  }

Result:

    1
    12
    123
    1234
    12345

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionMadSebView Question on Stackoverflow
Solution 1 - RDavid RobinsonView Answer on Stackoverflow
Solution 2 - RabalterView Answer on Stackoverflow
Solution 3 - RAreyaView Answer on Stackoverflow