gpt4 book ai didi

regex - R:基于模式列出文件

转载 作者:行者123 更新时间:2023-12-03 23:24:05 24 4
gpt4 key购买 nike

我想列出所有以“aT_”开头且扩展名为“.tif”的文件(例如 aT_123456_1x1_abcdef.tif ):

files<- list.files(pattern="^aT_")
files<- list.files(pattern="\\.tif$")

我怎样才能组合这些模式?是否有任何符号的通配符:例如 0-9、a-z、A-Z、_?类似 files<- list.files(pattern="^aT_[any kind of symbol]\\.tif$") 的东西?

最佳答案

使用 .*用于匹配除换行符以外的任何类型的字符。

files<- list.files(pattern="^aT_.*\\.tif$")

或者
files<- list.files(pattern="^aT_\\w*\\.tif$")

关于regex - R:基于模式列出文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32373530/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com