Supported Versions: PHP 4, PHP 5, PHP 7, PHP 8
Perform a regular expression match
<?php preg_match(    string $pattern,    string $subject,    array &$matches = null,    int $flags = 0,    int $offset = 0): int|false
<?php         $dom->schemaValidate(__DIR__.'/../../xsd/InvoicesDoc-v1.0.10.xsd');



        return array_map(function ($error) {

            preg_match("/Element '(.+?)':( \[.*?])? (.+)/", $error->message, $matches);

            return [

                'field' => $matches[1] ?? null,

                'message' => $matches[3] ?? null,