Lines Matching +full:- +full:i
13 if (count($this->patterns)) return;
16 $gunk = '/\#~:.?+=&%@!\-\[\]';
17 $punc = '.:?\-;,';
21 $this->schemes = getSchemes();
22 foreach ($this->schemes as $scheme) {
23 …$this->patterns[] = '\b(?i)' . $scheme . '(?-i)://[' . $any . ']+?(?=[' . $punc . ']*[^' . $any . …
26 $this->patterns[] = '(?<![/\\\\])\b(?i)www?(?-i)\.[' . $host . ']+?\.' .
28 $this->patterns[] = '(?<![/\\\\])\b(?i)ftp?(?-i)\.[' . $host . ']+?\.' .
36 foreach ($this->patterns as $pattern) {
37 $this->Lexer->addSpecialPattern($pattern, $mode, 'externallink');
52 return $this->patterns;