look for files without a - after the first space
-
- Posts: 6
- Joined: Fri May 22, 2020 8:57 pm
look for files without a - after the first space
How do I look for files without a - after the first space in the file name?
Re: look for files without a - after the first space
Code: Select all
regex:"^[^ ]* [^-]"
Sorry, posted wrong version. Revised. Re-revised.
Last edited by froggie on Sat May 23, 2020 11:58 pm, edited 2 times in total.
-
- Posts: 6
- Joined: Fri May 22, 2020 8:57 pm
Re: look for files without a - after the first space
Doesn't seem to work as I wanted it to.
https://i.imgur.com/ZRt0qRr.png
Maybe I should try to be a little more specific:
I'm trying to locate audio files that don't have " - " after the first word/number.
https://i.imgur.com/ZRt0qRr.png
Maybe I should try to be a little more specific:
I'm trying to locate audio files that don't have " - " after the first word/number.
-
- Posts: 18
- Joined: Sat Apr 11, 2020 2:45 pm
Re: look for files without a - after the first space
Hi, here's a stricter version that wont rely on filenames having only 1-space
regex:"^[^ ]* [^-]"
regex:"^[^ ]* [^-]"