regex 在R中更改向量中年份对的格式

myzjeezk  于 2022-11-18  发布在  其他
关注(0)|答案(1)|浏览(108)

我想知道是否有可能将我的Input更改为我的Desired_output

Input= c("20192020","20202021","20212022")

Desired_output= c("2019-20","2020-21","2021-22")
yqyhoc1h

yqyhoc1h1#

我们可以在这里使用sub()

Input <- c("20192020", "20202021", "20212022")
out <- sub("\\d{2}(\\d{2})$", "-\\1", Input)
out

[1] "2019-20" "2020-21" "2021-22"

相关问题