Expression not sufficiently specific

Home Topic     Print this Topic

 

This error occurs if the regular expression given is likely to match all or most of the characters in any given file. For instance the use of . to match any character on its own will match everything in a file except a new line character.

 

Examples

.

Error!

.+

Error!

.*

Error!

.-

Error!

.a

OK