Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
特定の文字で始まるすべての単語を別の単語に置き換えたい。試しgsubてみstr_replace_allましたが、ほとんど成功しませんでした。この例では、R で始まるすべての単語を MM に置き換えたいと考えています。gsub一度だけ適切に置き換えます:
gsub
str_replace_all
gsub("^R*\\w+", "MM", "Red, Rome, Ralf") # [1] "MM, Rome, Ralf"
前もって感謝します