Home
last modified time | relevance | path

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

/webtrees/app/SurnameTradition/
H A DMatrilinealSurnameTradition.php64 if (preg_match(self::REGEX_SPFX_SURN, $this->extractName($mother), $match) === 1) {
87 … if ($sex === 'F' && preg_match(self::REGEX_SPFX_SURN, $this->extractName($child), $match) === 1) {
H A DPaternalSurnameTradition.php64 … if ($sex === 'F' && preg_match(self::REGEX_SPFX_SURN, $this->extractName($child), $match) === 1) {
88 …if ($sex === 'F' && preg_match(self::REGEX_SPFX_SURN, $this->extractName($spouse), $match) === 1) {
H A DPatrilinealSurnameTradition.php64 if (preg_match(self::REGEX_SPFX_SURN, $this->extractName($father), $match) === 1) {
87 … if ($sex === 'M' && preg_match(self::REGEX_SPFX_SURN, $this->extractName($child), $match) === 1) {
H A DDefaultSurnameTradition.php42 …protected const REGEX_SPFX_SURN = '~(?<NAME>/(?<SPFX>[a-z’\']{0,4}(?: [a-z’\']{1,4})*) ?(?<SURN>[^… define in Fisharebest\\Webtrees\\SurnameTradition\\DefaultSurnameTradition