You are here

public function Normalize::appendPattern in Bibliography Module 7.2

Append a pattern to this list, making it the last to check

Parameters

string $regex:

array $matchPattern:

1 call to Normalize::appendPattern()
Normalize::addPatterns in lib/msrc-authortool/src/Nametools/Normalize.php
Initialize built-in and paramaterized patterns

File

lib/msrc-authortool/src/Nametools/Normalize.php, line 112

Class

Normalize
Normalize strings from common formats using REGEX

Namespace

Nametools

Code

public function appendPattern($regex, $matchPattern) {
  return $this
    ->addPattern($regex, $matchPattern, self::APPEND);
}