我想使用PHP“ preg_match_all”对单词进行计数。
我有一个使用过的代码,但是没有将0-9(数字)个字符视为单词。
我想在现有代码中包含0-9(数字)个字符。
我的代码:
((使用此代码,我希望将2019年的数量计为单词。)
<?php
$text = 'I have a code that I used but it doesnt count 2019 (numeric) characters as words.';
preg_match_all('/\pL+/u', $text, $data);
echo count($data[0]);
// Result: 15
?>