gpt4 book ai didi

bash - 如何使用shell计算String中的单词数

转载 作者:行者123 更新时间:2023-11-29 08:41:51 25 4
gpt4 key购买 nike

我想使用 Shell 计算字符串中的单词数。

假设字符串是:

input="Count from this String"

这里的分隔符是空格 ' ' 预期输出是 4。输入字符串中也可以有尾随空格字符,例如 "Count from this String "

如果字符串中有尾随空格,它应该产生相同的输出,即 4。我该怎么做?

最佳答案

echo "$input" | wc -w

使用wc -w 统计字数。

或者按照 dogbane 的建议, echo 也可以去掉:

wc -w <<< "$input"

如果 <<< 不被你的 shell 支持,你可以试试这个变体:

wc -w << END_OF_INPUT
$input
END_OF_INPUT

关于bash - 如何使用shell计算String中的单词数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15108229/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com