我有一个像下面这样的数据集。我想删除字符©之后的所有字符。如何在R中做到这一点?
data_clean_phrase <- c("Copyright © The Society of Geomagnetism and Earth",
"© 2013 Chinese National Committee ")
data_clean_df <- as.data.frame(data_clean_phrase)
是在特定字符之后还是在特定索引之后?
—
Dawny33
特定字符后:©
—
Hamideh 2015年
然后,似乎现有的答案解决了您的问题:)
—
Dawny33