php 计算单词个数,计算所有单词,包括php字符串中的数字

为了计算php字符串中的单词,通常我们可以使用str_word_count,但我认为并不总是一个好的解决方案

好例子:

$var ="Hello world!";

echo str_word_count($str);

print_r(str_word_count($str, 1));

– >输出

2

Array ( [0] => Hello [1] => world )

坏例子:

$var ="The example number 2 is a bad example it will not

count numbers and punctuations !!";

– >输出:

14

Array ( [0] => The [1] => example [2] => number [3] => is [4] => a

[5] => bad [6] => example [7] => it [8] => will [9] => not

[10] => count [11] => numbers [12] => and [13] => punctuations )

是否有一个很好的预定义函数来正确执行此操作,还是必须使用preg_match()?

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值