Laravelを使用した文章の単語数のカウント方法


  1. 文章の単語数をカウントするシンプルな方法: LaravelのStrクラスには、文章を単語に分割するための便利なメソッドが用意されています。以下の手順で単語数をカウントできます。
use Illuminate\Support\Str;
$text = "ここに文章を入力してください。";
$wordCount = Str::strWordCount($text);
echo "単語数: " . $wordCount;

上記のコードでは、Str::strWordCountメソッドを使用して、指定した文章の単語数をカウントしています。

use Illuminate\Support\Str;
$text = "<p>ここに文章を入力してください。</p>";
$strippedText = strip_tags($text);
$cleanText = preg_replace('/[^\p{L}\p{N}\s]/u', '', $strippedText);
$wordCount = Str::strWordCount($cleanText);
echo "単語数: " . $wordCount;