I'm using NetBeans and I want to know what regular expression to use to add single/double quotes around each constant. Every constant is defined like this:
define(SYSTEM_BASEDIR, '/base/dir');
Afaik, that is not the correct way. I need to convert all constants to this:
define('SYSTEM_BASEDIR', '/base/dir');
Thanks in advance to all helpers!