Settings
Explanation
*: Matches any sequence of characters. foo* → foobar, foo123
?: Matches a single character. fo?bar → foobar, fo1bar
[abc]: Matches one of the listed characters. fo[ob]ar → foobar, fobbar
[a-z]: Matches a character within the given range. file[1-5].txt → file1.txt, file2.txt
[^abc]: Matches a character that is not in the list. file[^1-5].txt → file6.txt
{foo,bar,baz}: Matches one of the given values. log_{info,error,debug}.txt → log_info.txt, log_error.txt
{foo,bar/{foo,bar,baz},baz}: Nested values. log_{info,{error,debug},debug}.txt → log_info.txt, log_error.txt
\: Escapes a special character. file\*name.txt → file*name.txt