AutorÃa | Ultima modificación | Ver Log |
<?phpdeclare(strict_types=1);namespace Phpml\Tokenization;class WordTokenizer implements Tokenizer{public function tokenize(string $text): array{$tokens = [];preg_match_all('/\w\w+/u', $text, $tokens);return $tokens[0];}}