I've turned my hand to a many, many things development related but regex continues to elude me!!
I need a regex to match filenames with extension where the filename part before the extension ends with a '-'.
Some example filenames...
filename.jpeg
filename-.png <-- MATCH
file name.doc
file name 3.mp4
file name -.dxg <-- MATCH
file.name.mov
NOTE: The filename may contain any valid character including periods.
Many thanks in advance
I need a regex to match filenames with extension where the filename part before the extension ends with a '-'.
Some example filenames...
filename.jpeg
filename-.png <-- MATCH
file name.doc
file name 3.mp4
file name -.dxg <-- MATCH
file.name.mov
NOTE: The filename may contain any valid character including periods.
Many thanks in advance