从R中的字符串中提取最后n个字符如何从R中的字符串中获取最后n个字符?有没有像SQL一样的功能?
3 回答
守候你守候我
TA贡献1802条经验 获得超10个赞
以防万一需要挑选一系列字符:
# For example, to get the date part from the stringsubstrRightRange <- function(x, m, n){substr(x, nchar(x)-m+1, nchar(x)-m+n)}value <- "REGNDATE:20170526RN" substrRightRange(value, 10, 8)[1] "20170526"
- 3 回答
- 0 关注
- 5368 浏览
添加回答
举报
0/150
提交
取消