使用 PHP 查找文本文件中少于 X 个字符的单词
如果我有一个这样的文本列表:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
strlen
函数 - 迭代单词并过滤掉具有更多字符的单词。You can use the
strlen
function - iterate through the words and filter out the ones with more characters.