What is the regex to match filenames that start with 'Run' and have a filename extension of '.py'?
It should match any of the following:
RunFoo.py
RunBar.py
Run42.py
It should not match:
myRunFoo.py
RunBar.py1
Run42.txt
(I am a regex novice and am more familiar with sql wildcards so the equivalent of what I am searching for would be "..LIKE 'Run%.py'...")