linux取字符串的前面,Linux Shell 截取字符串

shell中截取字符串的方法很多

8c21a5a171277f412662e43987b9ff06.gif

${var#*/}

${var##*/}

${var%/*}

${var%%/*}

${var:start:len}

${var:start}

${var:0-start:len}

${var:0-start}

3de457b8883bc98a9ad15c1327718e27.gif

下面用几个例子展示一下:

1) 获得字符串的长度

语法:

${#var}

示例代码:

str="http://www.fengbohello.xin3e.com/blog/shell-truncating-string"

echo "string : [${str}]"

length=${#str}

echo "length : [${length}]"

执行结果:

string : [http://www.fengbohello.xin3e.com/blog/shell-truncating-string]

length : [61]

2) 使用 # 和 ## 获取尾部子字符串

2.1) # 最小限度从前面截取word

语法:

${parameter#word}

示例代码:

5d840bac0d430654ab694cf5d9be3a16.gif

str="http://www.fengbohello.xin3e.com/blog/shell-truncating-string"

echo "string : [${str}]"

#分割符为'/'

substr=${str#*/}

echo "substr : [${substr}]"

2f825078d366f525739e0219c4bfde68.gif

执行结果:

string : [http://www.fengbohello.xin3e.com/blog/shell-truncating-string]

substr : [/www.fengbohello.xin3e.com/blog/shell-truncating-string]

2.2) ## 最大限度从前面截取word

语法:

${parameter##word}

示例代码:

c36b06d725f684cd5071837998c104a6.gif

str="http://www.fengbohello.xin3e.com/blog/shell-truncating-string"

echo "string : [${str}]"

#分割符为'/'

substr=${str##*/}

echo "substr : [${substr}]"

666a78e4426792122059c3d7509e9e89.gif

执行结果:

string : [http://www.fengbohello.xin3e.com/blog/shell-truncating-string]

substr : [shell-truncating-string]

3) 使用 % 和 %% 获取头部子字符串

3.1) % 最小限度从后面截取word

语法:

${parameter%word}

示例代码:

str="http://www.fengbohello.xin3e.com/blog/shell-truncating-string"

echo "string : [${str}]"

substr=${str%/*}

echo "substr : [${substr}]"

执行结果:

string : [http://www.fengbohello.xin3e.com/blog/shell-truncating-string]

substr : [http://www.fengbohello.xin3e.com/blog]

3.2) %% 最大限度从后面截取word

语法:

${parameter%%word}

示例代码:

str="http://www.fengbohello.xin3e.com/blog/shell-truncating-string"

echo "string : [${str}]"

substr=${str%%/*}

echo "substr : [${substr}]"

执行结果:

string : [http://www.fengbohello.xin3e.com/blog/shell-truncating-string]

substr : [http:]

4)使用 ${var:} 模式获取子字符串

4.1) 指定从左边第几个字符开始以及子串中字符的个数

语法:

${var:start:len}

示例代码:

53f34c9fdd98c7fd09426e4fc2672dc6.gif

str="http://www.fengbohello.xin3e.com/blog/shell-truncating-string"

echo "string : [${str}]"

#其中的 0 表示左边第一个字符开始,7 表示子字符的总个数。

substr=${str:0:7}

echo "substr : [${substr}]"

8e1ef1cf5e7ed55e4b6c4ff4d0b37e89.gif

执行结果:

string : [http://www.fengbohello.xin3e.com/blog/shell-truncating-string]

substr : [http://]

4.2) 从左边第几个字符开始一直到结束

语法:

${var:7}

示例代码:

a981f55d3d9fd10d6ade15ea5350c757.gif

str="http://www.fengbohello.xin3e.com/blog/shell-truncating-string"

echo "string : [${str}]"

#其中的 7 表示左边第8个字符开始

substr=${str:7}

echo "substr : [${substr}]"

9ef2fc2dbc0d6e39a2bc30e4e1d48c6a.gif

执行结果:

string : [http://www.fengbohello.xin3e.com/blog/shell-truncating-string]

substr : [www.fengbohello.xin3e.com/blog/shell-truncating-string]

4.3) 从右边第几个字符开始以及字符的个数

语法:

${var:0-start:len}

示例代码:

d46b7f79d4e3da90cd4b0508deefdd8a.gif

str="http://www.fengbohello.xin3e.com/blog/shell-truncating-string"

echo "string : [${str}]"

#其中的 0-23 表示右边算起第23个字符开始,5 表示字符的个数

substr=${str:0-23:5}

echo "substr : [${substr}]"

9a8a5b71f35ea8124e9d4127a89f6dd6.gif

执行结果:

string : [http://www.fengbohello.xin3e.com/blog/shell-truncating-string]

substr : [shell]

4.4) 从右边第几个字符开始一直到结束

语法:

${var:0-start}

示例代码:

35b60bc8193eb3b8149d70e075d5e799.gif

str="http://www.fengbohello.xin3e.com/blog/shell-truncating-string"

echo "string : [${str}]"

#其中的 0-6 表示右边算起第6个字符开始

substr=${str:0-6}

echo "substr : [${substr}]"

baf98596dd806d026dc131d9756afb39.gif

执行结果:

string : [http://www.fengbohello.xin3e.com/blog/shell-truncating-string]

substr : [string]

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/269526.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

idea修改新的git提交地址

更换git地址步骤 1、点击VCS 2、点击Git 3、点击Remotes 点击框中链接即可在右边看到一个铅笔字样的按钮,即可看到如图所示弹窗 点击铅笔(编辑),看到新的弹窗,链接已经被默认选中这时候粘贴新的git地址,点…

mac idea实现全局替换

点击Edit ----- Find ----- Replace in Path 例如要把项目中的cc替换为aa 点击Replace All

现代希腊语字母表

转载于:https://www.cnblogs.com/zhangzujin/p/6782532.html

SHA-1算法c语言实现

安全哈希算法(Secure Hash Algorithm)主要适用于数字签名标准 (Digital Signature Standard DSS)里面定义的数字签名算法(Digital Signature Algorithm DSA)。对于长度小于2^64位的消息。SHA1会产生一个160…

Mac安装RocketMQ和可视化控制台教程

1:下载: http://rocketmq.apache.org/docs/quick-start/, 直接下载源代码版本 2:使用maven进行源码编译: mvn -Prelease-all -DskipTests clean install -U 3:环境配置 找到已经安装好的 jdk 位置,通过命令:/usr/libexec/java_home 在.zshrc中加入JAVA…

基于redis 内存数据库简单使用

在ecplise中使用内存数据的客端户,前提要准备要下载两个jar包 commons-pool2-2.0.jar jedis-2.4.2.jar 前提准备做好了,那我们就开启redis的服务,打开一个命令窗体输入例如以下命令:redis-server 或redis-server redis根目\redis.conf se…

李连杰年度巨作霍元甲主题曲:周杰伦唱

年末最受人期待的影片《霍元甲》即将全球公映了,视李连杰为偶像的周杰伦将全权负责影片主题曲的创作。而在1月10日,这首电影同名新作已经通过全亚洲50家电台同众多歌迷和影迷见面了。 按周董的话说,这首歌就是在《双截棍》和《龙拳》的基础上…

[Noi2014]随机数生成器

来自FallDream 的博客&#xff0c;未经允许&#xff0c;请勿转载&#xff0c; 谢谢。 n,m<5000 前面生成的一堆数列 意义不明 实际上就是给你一个矩阵求排序后字典序最小的路径序列 发现(1,1)->(n,m)在选了(x,y)之后就变成了选(1,1)->(x,y)和(x,y)->(n,m) 所以直接…

Inherts

在http://mqingqing123.cnblogs.com/archive/2006/01/14/317162.html里&#xff0c;我介绍了CodeFile来取代Codebehind&#xff0c;可能你会感觉疑惑&#xff1a;ASP.NET工作组花费了很大的时间建立了与.NET1.1不同的后台文件模型&#xff0c;为什么没有更改.NET1.1的Inherits呢…

通孔的作用是什么linux,电路板空洞的作用是什么 如何区分PTH与NPTH两种通孔

如果你有机会拿起一片电路板&#xff0c;稍微观察一下会发现这电路板上有着许多大大小小的孔洞&#xff0c;把它拿起来对着天花板上的电灯看&#xff0c;还会发现许多密密麻麻的小孔&#xff0c;这些孔洞可不是放在哪里摆好看的&#xff0c;每个孔洞都是有其目的而被设计出来的…

Django Step by Step中文版,推荐一下

Diango是Python的一个快速Web开发框架&#xff0c;称为Python的ROR&#xff0c;在limodou的Blog里已经推荐了很久&#xff0c;元旦前后也学习了一下&#xff0c;最近很懒&#xff0c;什么都没有干。文档地址&#xff1a;http://www.woodpecker.org.cn/obp/django/django-stepby…

关于mysql修改密码 set password for root@localhost = password(‘xxx‘);报错解决方法

mysql> SET PASSWORD FOR rootlocalhost PASSWORD(123456); ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near PASSWORD(123456) at line 1 通过下面的命令…

【BootStrap】 概述 CSS

BootStrap BootStrap由Twitter开发&#xff0c;基于HTML,CSS,JS&#xff0c;是一套前端框架。它的特点是对浏览器良好的支持&#xff08;目前市面上所有流行浏览器都可以&#xff09;&#xff0c;兼容移动设备&#xff0c;以及响应式设计&#xff08;响应式CSS自适应于各种设备…

1055 - Expression #1 of SELECT list is not in GROUP BY clause and contains解决

1055 - Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column btc.a.applicant_unit which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_modeonly_full_group_by 执行下如下语句&…