我的问题是什么是 gsub 命令来代替以特定字母开头的单词。我的主要目标是从给定文本中删除所有 URL。
例如,我有一个文本:"refer http://www.google.com for further details"
. 我需要做的是将文本转换为"refer for further details"
. 为此,基本上我需要编写gsub
如下命令:
text <- "refer http://www.google.com for further details"
gsub("http", "", text)
但是,这只会从文本中删除部分“http”。我需要删除以“http”开头的完整单词。
我尝试过的其他一些命令:
gsub('http..', "", text) # -->removes two letters more after 'http' (the number of dots specifies the number of letters'
gsub('^http', "", text)
gsub('/http', "", text)
gsub('\\\http', "", text)
这一切都没有产生任何丰硕的成果。
在这方面的任何帮助将不胜感激。