How to remove all characters that lie between blanks (white spaces) in R string?
Suppose you have a character string "The Big Dog" and you would like to remove all characters that lie between the blanks (white spaces), so you end up with "The Dog". Note that in the actual code the "Big" is dynamic and the string between the white spaces can be formed by different sequences of… Read More How to remove all characters that lie between blanks (white spaces) in R string?