Home
last modified time | relevance | path

Searched refs:regex (Results 226 – 250 of 380) sorted by relevance

12345678910>>...16

/plugin/ckgdoku/fckeditor/editor/filemanager/connectors/php/
H A Dutil.php39 $regex =
50 while (preg_match('/'.$regex.'/S', $string, $matches)) {
/plugin/archiveupload/
H A Daction.php214 $regex = join('|',$types);
233 if(preg_match('/\.('.$regex.')$/i',$fn_old)){
/plugin/ckgedit/fckeditor/editor/filemanager/connectors/php/
H A Dutil.php39 $regex =
50 while (preg_match('/'.$regex.'/S', $string, $matches)) {
/plugin/linkback/
H A Dtools.php21 $regex = '!<link rel="(shortcut )?icon" href="([^"]+)" ?/?>!';
22 if (preg_match($regex, $page, $match)) {
/plugin/subjectindex/plugins/
H A DEntryTag.php17 public $regex = '(?<=\s|^)\#[^\s]+'; variable in SI_EntryTag
H A DEntryDefault.php34 public $regex = '\{\{entry>.+?\}\}'; variable in SI_EntryDefault
/plugin/commonmark/vendor/league/commonmark/src/
H A DCursor.php
/plugin/webdav/vendor/sabre/http/lib/
H A Dfunctions.php229 $regex = <<<REGEX
245 if (!preg_match($regex, $value, $matches)) {
/plugin/icalevents/vendor/sabre/uri/lib/
H A Dfunctions.php351 $regex = '
360 if (!preg_match($regex, $uri, $matches)) {
/plugin/webdav/vendor/sabre/uri/lib/
H A Dfunctions.php351 $regex = '
360 if (!preg_match($regex, $uri, $matches)) {
/plugin/davcard/vendor/sabre/vobject/lib/Property/
H A DText.php120 $regex = '# (?<!\\\\) ; #x';
121 $matches = preg_split($regex, $val);
/plugin/webdavclient/vendor/sabre/vobject/lib/Property/
H A DText.php120 $regex = '# (?<!\\\\) ; #x';
121 $matches = preg_split($regex, $val);
/plugin/davcal/vendor/sabre/vobject/lib/Property/
H A DText.php120 $regex = '# (?<!\\\\) ; #x';
121 $matches = preg_split($regex, $val);
/plugin/davcal/vendor/sabre/http/lib/
H A Dfunctions.php229 $regex = <<<REGEX
245 if (!preg_match($regex, $value, $matches)) {
/plugin/fckg/action/
H A Dedit.php2803 $regex = '~~NOCACHE~~|~~NOTOC~~';
2828 $regex .= "|$pattern";
2833 $regex = ltrim($regex, '|');
2858 return array('plugins'=> $regex, 'xcl'=> $regex_xcl);
/plugin/webdav/vendor/sabre/vobject/lib/Property/
H A DText.php115 $regex = '# (?<!\\\\) ; #x';
116 $matches = preg_split($regex, $val);
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/
H A DDisallowAlternativePHPTagsSniff.php258 $regex = '`'.preg_quote(trim($tokens[$close_tag_pointer]['content'])).'`';
259 $close_replacement = preg_replace($regex, '?>', $tokens[$close_tag_pointer]['content']);
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/js/
H A Dholder.min.js12regex:/^(\d+)x(\d+)$/,output:function(a){var b=this.regex.exec(a);return{width:+b[1],height:+b[2]}…
/plugin/catlist/
H A Dsyntax.php121 // is regex negated ?
123 $data[substr($option,0,-1)][] = array('regex' => $found[3], 'neg' => true);
125 $data[$option][] = array('regex' => $found[3], 'neg' => false);
229 * ( array of array('regex'=>the_regex,'neg'=>false/true) ). The exclusion
236 foreach($arrayRegex as $regex) {
237 if (!is_array($regex)) // temporary, for transitioning to v2021-07-21
238 $regex = array('regex' => $regex, 'neg' => false);
239 $match = preg_match('/'.$regex['rege
[all...]
/plugin/wysiwyg/fckeditor/editor/_source/internals/
H A Dfckconfig.js214 var regex = new RegExp( "(<|&lt;)!--\\{" + this._CodeTag + "(\\d+)\\}--(>|&gt;)", "g" ) ;
215 return html.replace( regex, _Replace ) ;
/plugin/icalevents/vendor/sabre/vobject/lib/Property/
H A DText.php123 $regex = '# (?<!\\\\) ; #x';
124 $matches = preg_split($regex, $val);
/plugin/tocselect/
H A Daction.php40 $regex = preg_quote(':*');
41 if(preg_match('/^(.*?)' . $regex . '\s*$/',$wikifn,$matches))
/plugin/xtern/
H A Daction.php55 $regex = "#^($skip)$#";
56 if(preg_match($regex,$ID)) {
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Tokenizers/
H A DJS.php436 $regex = $this->getRegexToken(
444 if ($regex !== null) {
448 'content' => $regex['content'],
452 $content = PHP_CodeSniffer::prepareForOutput($regex['content']);
456 $i = $regex['end'];
/plugin/xcom/
H A Dscript.js352 var regex;
389 regex = RegExp('^\s*\\d\\d\\d\\d-\\d\\d-\\d\\d\s*$');
391 if(!regex.test(opt)) {
504 var regex = RegExp('(wiki|plugin|dokuwiki|xcom)\.');
505 if(!optstring.match(regex)) {

12345678910>>...16