I run
dir.create('./junk_data')
file.create(paste('./junk_data/QWE',01:12,01:31,2005:2015,'.3',sep=''))
file.create(paste('./junk_data/RTY',01:12,01:31,2005:2015,'.3',sep=''))
and want to list all the files that begin with QWE
and end with 2011.3
. I tried
list.files('./junk_data/',pattern='QWE....2011.3',full.names=T)
and
list.files('./junk_data/',pattern='QWE....2011.3',full.names=T,perl=T)
but I guess '.'
doesn't mean one what I think, as I get none of the files I want.
I tried a few tutorials on regex, but no joy.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…