<?php preg_match("#[\w()-]#", 'some text'); // ok preg_match("#[-\w()]#", 'some text'); // ok preg_match("#[\w-()]#", 'some text'); // NOPE! preg_match("#[\w(-)]#", 'some text'); // ok
You have javascript disabled. You will not be able to edit any code.