Page 1 of 1

Find files

Posted: Tue Jan 09, 2018 9:17 am
by ThunderWarrior
Hello friends,

How can I search files with some concrete character or string?

Example:
I have 4 files:
master01.jpg
master02.jpg
master#3.jpg
master#4.jpg

What code can I use to search the files with "#" only?
And What code for all files without "#" only?

Thanks

Re: Find files

Posted: Sat Jan 13, 2018 6:45 am
by XnTriq
ThunderWarrior wrote:What code can I use to search the files with "#" only?
  1. Disable Use RegExp
  2. Filename:

    Code: Select all

    *#*
ThunderWarrior wrote:And What code for all files without "#" only?
  1. Activate Use RegExp
  2. Filename:

    Code: Select all

    [^#]
RegexOne: Excluding specific characters

Re: Find files

Posted: Mon Jan 15, 2018 11:32 am
by ThunderWarrior
Thanks a lot. Very useful.

Nice day!