我们可以用 substring
substring
tweetsdf$usertweet <- substring(tweetsdf$usertweet, 3)
或者使用 sub
sub
sub("\\S+\\s+", "", tweetsdf$usertweet)