I want to check whether a string is a file name (name DOT ext) or not.
Name of file cannot contain / ? * : ; { } \
Could you please suggest me the regex expression to use in preg_match()?
|
I want to check whether a string is a file name (name DOT ext) or not. Name of file cannot contain Could you please suggest me the regex expression to use in preg_match()? |
||||
|
Here you go:
"One or more characters that aren't any of these ones, then a dot, then some more characters that aren't these ones." (As long as you're sure that the dot is really required - if not, it's simply: |
|||||||||||||||
|
|
|||
|
|
|
The regex would be something like (for a three letter extension):
PHP needs backslashes escaped, and
To match filenames like
|
|||||||
|
foobaror.htaccessis a valid filename too. – Gumbo Jun 23 '09 at 12:09NULand/. – xiaomao Oct 21 '12 at 4:34