标签: regex
/myFilename_.*csv|other_.*csv|third_.*/g
当两个匹配存在时,它几乎可以工作但匹配整行?
我正在尝试查找 myFilename_randomstuff.csv 或 other_5randomstuff.csv 或 third_randomstuff.csv
http://regexr.com/3e6al
答案 0 :(得分:1)
myFilename_.*?\.csv.*?|other_.*?\.csv.*?|third_.*?\.csv.*?