apie / count-words
Composer package of the apie library: count words
dev-main
2023-08-29 13:29 UTC
Requires
- php: >=8.1
- ext-mbstring: *
- apie/core: dev-main
Requires (Dev)
- phpspec/prophecy-phpunit: ^2.0
- phpunit/phpunit: ^9.5
This package is auto-updated.
Last update: 2024-10-16 15:12:48 UTC
README
count-words
This package is part of the Apie library. The code is maintained in a monorepo, so PR's need to be sent to the monorepo
Documentation
This small package contains a class to count words in a text. All words are returned lowercase.
Usage
use Apie\CountWords\WordCounter; var_dump(WordCounter::countFromString('This is the text with many words like the or and'));
This will echo:
array(10) {
["this"]=>
int(1)
["is"]=>
int(1)
["the"]=>
int(2)
["text"]=>
int(1)
["with"]=>
int(1)
["many"]=>
int(1)
["words"]=>
int(1)
["like"]=>
int(1)
["or"]=>
int(1)
["and"]=>
int(1)
}