28 $pattern =
'/' . self::NAME_PATTERN .
'/u';
29 preg_match_all( $pattern, $text, $matches, PREG_SET_ORDER );
31 $new = array_map(
static function ( $match ) {
33 if ( ctype_digit( substr( $match[0], 1 ) ) ) {
40 $new = array_filter( $new );
41 return array_merge( $insertables, $new );