如果我有这样的文本列表:
Coffee
Tea Cola
Juice
Beer
Vodka
Etc.
如何使用PHP查找少于4个字符的所有单词并将其打印出来?
答案 0 :(得分:3)
<?php
$arr = file("words.txt");
foreach($arr as $word) {
if(strlen($word) < 4) echo $word . "\n";
}
?>
答案 1 :(得分:2)
您可以使用strlen
函数 - 遍历单词并过滤掉包含更多字符的单词。
foreach ($words as $singleWord)
{
if ( strlen($singleWord) < 4 )
echo $singleWord;
}