我想知道是否有可能将我的Input更改为我的Desired_output?
Input
Desired_output
Input= c("20192020","20202021","20212022") Desired_output= c("2019-20","2020-21","2021-22")
yqyhoc1h1#
我们可以在这里使用sub():
sub()
Input <- c("20192020", "20202021", "20212022") out <- sub("\\d{2}(\\d{2})$", "-\\1", Input) out [1] "2019-20" "2020-21" "2021-22"
1条答案
按热度按时间yqyhoc1h1#
我们可以在这里使用
sub()
: