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

Categories

0 votes
493 views
in Technique[技术] by (71.8m points)

regex - remove all line breaks (enter symbols) from the string using R

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

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

1 Answer

0 votes
by (71.8m points)

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"

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...