Lines Matching defs:regexp
29 private $regexp;
49 $this->regexp = $this->parseRegexp($config);
84 return $this->regexp;
214 $regexp = trim($_REQUEST['search']);
216 if ($regexp == '') {
220 if ($config->getConf('searchmode') == 'regexp') {
222 if (preg_match('/^([^\w\\\\]|_).+?\1[imsxADSUXJu]*$/s', $regexp) != 1) {
227 $regexp = "\033" . $regexp . "\033um";
231 $regexp = "\033" . preg_quote($regexp) . "\033";
234 $regexp = str_replace("\r\n", "\n", $regexp);
237 $regexp .= 'i';
240 return $regexp;