I am a complete Reg-exp noob, so please bear with me. Tried to google this, but haven't found it yet.
What would be an appropriate way of writing a Regular expression matching files starting with a dot, such as .buildpath
or .htaccess
?
In most regex languages, ^\.
or ^[.]
will match a leading dot.