如何将字符添加到原始数据
我的数据组织如下。
RED1
RED2
RED3
YELLO
我想在这里为数据添加字符。
例如,添加所有http:// color.com
http:// color.com RED1
http:// color.com RED2
http:// color.com RED3
http:// color.com RED4
*最初,http://
后面不应留有空格(链接链接是通过链接进行的。)
当你想要这样做时 我应该做什么功能?
答案 0 :(得分:0)
test <- c("Red", "Red1")
paste0("http://", test, sep = "")
# [1] "http://Red" "http://Red1"