多个文件名匹配

时间:2012-06-03 17:34:17

标签: php regex

我如何完成评论中的以下内容:

更新:评论中的文件命名约定错误

// Do any of the file names in the list match the file name for this run?
// Full file name is cs1212-42173-TVCS.csv or cs1212-42173-TVWK.csv
$pattern = '/cs'.date('md').'-\d{5}-TVCS\.csv/i';

现在它只获取TVCS文件名,但我需要它来查找TVCS和TVWK。

谢谢

1 个答案:

答案 0 :(得分:1)

$pattern = '/cs' . date('md') . '-\d{5}-TV(CS|WK)\.csv/i';