I have the following files from which I would like to match a set of specific files
TS_1.zip
The one.zip
Linux Mirror.zip
Linux.Mirror.zip
LinuxWindows1.zip
LinuxWindows2.zip
LinuxWindows3.zip
LinuxWindows4.zip
Linux.Windows.zip
TS_1.xls
The one.txt
The regular expression I am using is;
Linux(?=Windows).*\.zip/g
I attempted to use however it does not match any patterns;
Linux(?=\bWindows).*\.zip/g
I would have thought \b
matches the word 'Windows'