Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

How to remove all line breaks (enter symbols) from the string?

my_string <- "foo
bar
baz
quux"

I've tried gsub(" ", "", my_string), but it doesn't work, because new line and line break aren't equal.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
484 views
Welcome To Ask or Share your Answers For Others

1 Answer

You need to strip and to remove carriage returns and new lines.

x <- "foo
bar
baz
quux"
gsub("[
]", "", x)
## [1] "foobarbazquux"

Or

library(stringr)
str_replace_all(x, "[
]" , "")
## [1] "foobarbazquux"

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...