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
810 views
in Technique[技术] by (71.8m points)

regex - How to remove extra white space between words inside a character vector using?

Suppose I have a character vector like

"Hi,  this is a   good  time to   start working   together.". 

I just want to have

" Hi, this is a good time to start working together." 

Only one white space between two words. How should I do this in R?

See Question&Answers more detail:os

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

1 Answer

0 votes
by (71.8m points)

gsub is your friend:

test <- "Hi,  this is a   good  time to   start working   together."
gsub("\s+"," ",test)
#[1] "Hi, this is a good time to start working together."

\s+ will match any space character (space, tab etc), or repeats of space characters, and will replace it with a single space " ".


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

...