使用gsub函数清理R中数据框中的列

我有一列显示一些人的总资产为3,94,24,827〜3 Crore +这种格式。 我希望此列仅显示数字数据,即上面的值为39400000,每行都显示相同的值。 如何在R中执行此操作


如果你尝试类似的话会怎么样

text=“Rs 3,94,24,827 ~ 3 Crore+”
gsub(“D”,””,gsub(“,[2].+”,”00000”,text))
[1] “39400000”

单独获取号码;

gsub(“(~.*)|D”,””,text)
[1]”39424827”
链接地址: http://www.djcxy.com/p/38329.html

上一篇: Use of gsub function to clean a column in a data frame in R

下一篇: Separate Mixed Dates and Times