Lines Matching defs:match
16 * Any of the contained patterns could match and when one does it's label is returned.
20 /** @var string[] patterns to match */
49 * on a match. Label must be ASCII
60 * Attempts to match all patterns at once against a string.
62 * @param string $subject String to match against.
63 * @param string $match First matched portion of
65 * @return bool|string False if no match found, label if label exists, true if not
67 public function apply($subject, &$match)
73 $match = "";
77 $match = $matches[0];
91 * @param string $subject String to match against.
92 * @param array $split The split result: array containing, pre-match, match & post-match strings