码迷,mamicode.com
首页 > 系统相关 > 详细

LINUX SHELL 字符串操作方法

时间:2017-10-29 14:35:38      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:logs   计算   字符   字符串   操作   int   ring   大写   bst   

1、计算字符串的长度

length=`echo $string|awk ‘{print $0}‘`

2、字符串大写转小写

lower_string=`echo $string|awk ‘{print tolower($0)}‘`

3、字符串大写转小写

upper_str=`echo $string|awk ‘{print toupper($0)}‘`

4、字符串截取

str=`echo $string|awk ‘{print substr($0, 0, length($0) - 1)}‘`

  

LINUX SHELL 字符串操作方法

标签:logs   计算   字符   字符串   操作   int   ring   大写   bst   

原文地址:http://www.cnblogs.com/stupid-vincent/p/7749963.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!