I just need to put some files in the cxs.ignore file but I'm a noob at regexp so please, help me build the specific regexp for the following:
a. Needed "pfile:" regexp#1: (specific filename WITH specific extension, REGARDLESS of path)
<any-path>/untgz.php
b. Needed "pfile:" regexp#2: (specific filename, REGARDLESS of extension, REGARDLESS of path)
<any-path>/thisismyfile.*
HELP required: specific regexp for "<anypath>/filename.*"
-
- Moderator
- Posts: 1524
- Joined: 01 Oct 2008, 09:24
Re: HELP required: specific regexp for "<anypath>/filename.*
This should do it:
a:
b:
a:
Code: Select all
pfile:.*/untgz\.php
Code: Select all
pfile:.*/thisismyfile\..*