gpt4 book ai didi

linux - shell 脚本 : Length space separated

转载 作者:太空狗 更新时间:2023-10-29 11:27:35 24 4
gpt4 key购买 nike

如何让下面的代码返回由空格分隔的单词数?

example='aaa bbb ccc ddd eee'
echo ${#example}

命令 echo ${#example} 返回字母总数 (19)。返回总字数 (5) 的最佳命令是什么?

最佳答案

$ foo=($example)

$ echo ${#foo[*]}
5

如果你想在没有变量的情况下做到这一点

$ set $example

$ echo $#
5

关于linux - shell 脚本 : Length space separated,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14184276/

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