A (fairly) standard way to specify pattern matching in strings.
For example ".*\.txt" would match anything ending with ".txt" :
. any character
* 0,1,2,... or any number of those
\. a period (the slash "escapes" the next char)
txt those characters