正则表达式找到三个不同的文件名模式?

时间:2016-09-08 00:58:54

标签: regex

/myFilename_.*csv|other_.*csv|third_.*/g

当两个匹配存在时,它几乎可以工作但匹配整行?

我正在尝试查找 myFilename_randomstuff.csv other_5randomstuff.csv third_randomstuff.csv

http://regexr.com/3e6al

1 个答案:

答案 0 :(得分:1)

myFilename_.*?\.csv.*?|other_.*?\.csv.*?|third_.*?\.csv.*?