标签: r character
在R中我有以下问题。
X =" 2017年10月3日"
我想把它变成
X =" 20171003"
有可能吗?
答案 0 :(得分:1)
对于在Python和Java等许多语言中找到的字符串,你似乎想要一个类似于replace()的函数,我会在R中使用gsub()函数。
Here is an old answer I found that explains it nicely
我想你的例子看起来像
gsub("-","",x)