从R中的字符串中提取最后n个字符

问题描述

我不知道基础 R 中的任何内容,但是使用substrand来创建一个函数来执行此操作很简单nchar

x <- "some text in a string"

substrRight <- function(x, n){
  substr(x, nchar(x)-n+1, nchar(x))
}

substrRight(x, 6)
[1] "string"

substrRight(x, 8)
[1] "a string"

正如@mdsumner 指出的那样,这是矢量化的。考虑:

x <- c("some text in a string", "I really need to learn how to count")
substrRight(x, 6)
[1] "string" " count"

解决方法

如何从 R 中的字符串中获取最后 n 个字符?有没有像 SQL 的 RIGHT 这样的函数?