No, the parenthesis are there to "collect/remember" the matched digits or characters.
For example, if you want to replace the matched characters with some other values, you need the parenthesis. They build groups for later use.
@ohrenkino gave you a solution for filenames, using such parenthesis:
If you want so search for parenthesis as ordinary character, you have to escape them like this \( for an opening bracket and \) for a closing bracket