标签: r regex string count
我使用以下代码来减少邮政编码的长度,以及邮政编码扇区:
postcode <- substring(postcode, 1, nchar(scot.population$Postcode)-2 )
不幸的是,有些字符串会留下额外的字符,因此我需要删除它。我目前有这些数据:
postcode <- c("AB123L", "AB125Y", "AB140L")
如何统计那些包含7个字符并删除最后一个字母的字符串?