I'm trying to get a regex that will match:
somefile_1.txt
somefile_2.txt
somefile_{anything}.txt
but not match:
somefile_16.txt
I tried
somefile_[^(16)].txt
with no luck (it includes even the "16" record)
|
1
|
I'm trying to get a regex that will match:
but not match:
I tried
with no luck (it includes even the "16" record)
|
|||
|
|
|
|
Some regex libraries allow lookahead:
Otherwise, you can still use multiple character classes:
or, to achieve maximum portability:
Edit: Corrected error pointed out by Piotr Lesnicki. |
||||||||||
|
|
|
The best solution has already been mentioned:
This works, and is greedy enough to take anything coming at it on the same line. If you know, however, that you want a valid file name, I'd suggest also limiting invalid characters:
If you're working with a regex engine that does not support lookahead, you'll have to consider how to make up that !16. You can split files into two groups, those that start with 1, and aren't followed by 6, and those that start with anything else:
If you want to allow somefile_16_stuff.txt but NOT somefile_16.txt, these regexes above are not enough. You'll need to set your limit differently:
Combine this all, and you end up with two possibilities, one which blocks out the single instance (somefile_16.txt), and one which blocks out all families (somefile_16*.txt). I personally think you prefer the first one:
In the version without removing special characters so it's easier to read:
|
|||
|
|
|
|
(?!16) means: Assert that it is impossible to match the regex "16" starting at that position. |
|||
|
|
|
To obey strictly to your specification and be picky, you should rather use:
so that somefile_1666.txt which is {anything} can be matched ;) but sometimes it is just more readable to use...:
|
|||
|
|
|
|
Sometimes it's just easier to use two regular expressions. First look for everything you want, then ignore everything you don't. I do this all the time on the command line where I pipe a regex that gets a superset into another regex that ignores stuff I don't want. If the goal is to get the job done rather than find the perfect regex, consider that approach. It's often much easier to write and understand than a regex that makes use of exotic features. |
||
|
|
|
|
Without using lookahead
Read it like:
and finally followed by |
||
|
|