标签: r
我需要用r中的三个点替换所有正好3个字符长的单词,我试过这个:
myText <- "How are you today?" gsub ('\\w{3}','...',myText)
但结果是:“...... ......啊?” 我该如何解决?