Home
last modified time | relevance | path

Searched refs:length_pattern (Results 1 – 1 of 1) sorted by relevance

/dokuwiki/inc/Utf8/
H A DPhpString.php116 $length_pattern = '';
138 $length_pattern = '(.*)$'; // the rest of the string
149 if ($Lx) $length_pattern = '(?:.{65535}){' . $Lx . '}';
150 $length_pattern = '(' . $length_pattern . '.{' . $Ly . '})';
157 if ($Lx) $length_pattern = '(?:.{65535}){' . $Lx . '}';
158 $length_pattern = '(.*)(?:' . $length_pattern . '.{' . $Ly . '})$';
162 if (!preg_match('#' . $offset_pattern . $length_pattern . '#us', $str, $match)) return '';