使用 PHP 查找文本文件中少于 X 个字符的单词

发布于 2024-12-10 13:55:02 字数 126 浏览 0 评论 0原文

如果我有一个这样的文本列表:

Coffee
Tea Cola
Juice
Beer
Vodka
Etc.

如何使用 PHP 查找所有少于 4 个字符的单词并将其打印出来?

If i have a text list like this:

Coffee
Tea Cola
Juice
Beer
Vodka
Etc.

How do I use PHP to find all words with less than 4 characters and print them out?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

Bonjour°[大白 2024-12-17 13:55:02
<?php

$arr = file("words.txt");

foreach($arr as $word) {
    if(strlen($word) < 4) echo $word . "\n";
}

?>
<?php

$arr = file("words.txt");

foreach($arr as $word) {
    if(strlen($word) < 4) echo $word . "\n";
}

?>
浮世清欢 2024-12-17 13:55:02

您可以使用 strlen 函数 - 迭代单词并过滤掉具有更多字符的单词。

foreach ($words as $singleWord)
{
   if ( strlen($singleWord) < 4 )
      echo $singleWord;
}

You can use the strlen function - iterate through the words and filter out the ones with more characters.

foreach ($words as $singleWord)
{
   if ( strlen($singleWord) < 4 )
      echo $singleWord;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文