shell统计字符串中单词个数 Shell中统计字符串中单词的个数的几种方法

软件发布|下载排行|最新软件

当前位置:首页IT学院IT技术

shell统计字符串中单词个数 Shell中统计字符串中单词的个数的几种方法

杰瑞26   2021-03-30 我要评论

Shell中求字符串中单词的个数的几种方法

方法一:

[linux@host ~]# echo 'one two three four five' | wc -w
5

方法二:

[linux@host ~]# echo 'one two three four five' | awk '{print NF}'
5

方法三:

[linux@host ~]# s='one two three four five' 
[linux@host ~]# set ${s}
[linux@host ~]# echo $#
5

方法四:

[linux@host ~]# s='one two three four five' 
[linux@host ~]# a=($s)
[linux@host ~]# echo ${#a[@]}
5

方法五:

[linux@host ~]# s='one two three four five' 
[linux@host ~]# echo $s | tr ' ' '\n' | wc -l
5

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。如果你想了解更多相关内容请查看下面相关链接

猜您喜欢

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们