linux 字符串截取

简介: lishell中截取字符串的方法很多[li](javascript:void(0); "复制代码"){var##/}{var%%/}{var:start}{var:0-start}[复制代码](javascr...

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

[
li

](javascript:void(0); "复制代码")

<pre style="margin: 0px; padding: 0px; white-space: pre-wrap; overflow-wrap: break-word; font-family: "Courier New" !important; font-size: 12px !important;">{var#*/}{var##/}
{var%/*}{var%%/
}
{var:start:len}{var:start}
{var:0-start:len}{var:0-start}</pre>

[
复制代码

](javascript:void(0); "复制代码")


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

1) 获得字符串的长度

语法:

<pre style="margin: 0px; padding: 0px; white-space: pre-wrap; overflow-wrap: break-word; font-family: "Courier New" !important; font-size: 12px !important;">${#var}</pre>

示例代码:

<pre style="margin: 0px; padding: 0px; white-space: pre-wrap; overflow-wrap: break-word; font-family: "Courier New" !important; font-size: 12px !important;">str="http://www.fengbohello.xin3e.com/blog/shell-truncating-string"
echo "string : [{str}]" length={#str} echo "length : [${length}]"</pre>

执行结果:

<pre style="margin: 0px; padding: 0px; white-space: pre-wrap; overflow-wrap: break-word; font-family: "Courier New" !important; font-size: 12px !important;">string : [http://www.fengbohello.xin3e.com/blog/shell-truncating-string]
length : [61]</pre>


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

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

语法:

<pre style="margin: 0px; padding: 0px; white-space: pre-wrap; overflow-wrap: break-word; font-family: "Courier New" !important; font-size: 12px !important;">${parameter#word} </pre>

示例代码:

[
复制代码

](javascript:void(0); "复制代码")

<pre style="margin: 0px; padding: 0px; white-space: pre-wrap; overflow-wrap: break-word; font-family: "Courier New" !important; font-size: 12px !important;">str="http://www.fengbohello.xin3e.com/blog/shell-truncating-string"
echo "string : [{str}]" #分割符为'/' substr={str#*/} echo "substr : [${substr}]"</pre>

[
复制代码

](javascript:void(0); "复制代码")

执行结果:

<pre style="margin: 0px; padding: 0px; white-space: pre-wrap; overflow-wrap: break-word; font-family: "Courier New" !important; font-size: 12px !important;">string : [http://www.fengbohello.xin3e.com/blog/shell-truncating-string]
substr : [/www.fengbohello.xin3e.com/blog/shell-truncating-string]</pre>

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

语法:

<pre style="margin: 0px; padding: 0px; white-space: pre-wrap; overflow-wrap: break-word; font-family: "Courier New" !important; font-size: 12px !important;">${parameter##word}</pre>

示例代码:

[
复制代码

](javascript:void(0); "复制代码")

<pre style="margin: 0px; padding: 0px; white-space: pre-wrap; overflow-wrap: break-word; font-family: "Courier New" !important; font-size: 12px !important;">str="http://www.fengbohello.xin3e.com/blog/shell-truncating-string"
echo "string : [{str}]" #分割符为'/' substr={str##*/} echo "substr : [${substr}]"</pre>

[
复制代码

](javascript:void(0); "复制代码")

执行结果:

<pre style="margin: 0px; padding: 0px; white-space: pre-wrap; overflow-wrap: break-word; font-family: "Courier New" !important; font-size: 12px !important;">string : [http://www.fengbohello.xin3e.com/blog/shell-truncating-string]
substr : [shell-truncating-string]</pre>


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

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

语法:

<pre style="margin: 0px; padding: 0px; white-space: pre-wrap; overflow-wrap: break-word; font-family: "Courier New" !important; font-size: 12px !important;">${parameter%word} </pre>

示例代码:

<pre style="margin: 0px; padding: 0px; white-space: pre-wrap; overflow-wrap: break-word; font-family: "Courier New" !important; font-size: 12px !important;">str="http://www.fengbohello.xin3e.com/blog/shell-truncating-string"
echo "string : [{str}]" substr={str%/*}
echo "substr : [${substr}]"</pre>

执行结果:

<pre style="margin: 0px; padding: 0px; white-space: pre-wrap; overflow-wrap: break-word; font-family: "Courier New" !important; font-size: 12px !important;">string : [http://www.fengbohello.xin3e.com/blog/shell-truncating-string]
substr : [http://www.fengbohello.xin3e.com/blog]</pre>

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

语法:

<pre style="margin: 0px; padding: 0px; white-space: pre-wrap; overflow-wrap: break-word; font-family: "Courier New" !important; font-size: 12px !important;">${parameter%%word}</pre>

示例代码:

<pre style="margin: 0px; padding: 0px; white-space: pre-wrap; overflow-wrap: break-word; font-family: "Courier New" !important; font-size: 12px !important;">str="http://www.fengbohello.xin3e.com/blog/shell-truncating-string"
echo "string : [{str}]" substr={str%%/*}
echo "substr : [${substr}]"</pre>

执行结果:

<pre style="margin: 0px; padding: 0px; white-space: pre-wrap; overflow-wrap: break-word; font-family: "Courier New" !important; font-size: 12px !important;">string : [http://www.fengbohello.xin3e.com/blog/shell-truncating-string]
substr : [http:]</pre>


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

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

语法:

<pre style="margin: 0px; padding: 0px; white-space: pre-wrap; overflow-wrap: break-word; font-family: "Courier New" !important; font-size: 12px !important;">${var:start:len}</pre>

示例代码:

[
复制代码

](javascript:void(0); "复制代码")

<pre style="margin: 0px; padding: 0px; white-space: pre-wrap; overflow-wrap: break-word; font-family: "Courier New" !important; font-size: 12px !important;">str="http://www.fengbohello.xin3e.com/blog/shell-truncating-string"
echo "string : [{str}]" #其中的 0 表示左边第一个字符开始,7 表示子字符的总个数。 substr={str:0:7} echo "substr : [${substr}]"</pre>

[
复制代码

](javascript:void(0); "复制代码")

执行结果:

<pre style="margin: 0px; padding: 0px; white-space: pre-wrap; overflow-wrap: break-word; font-family: "Courier New" !important; font-size: 12px !important;">string : [http://www.fengbohello.xin3e.com/blog/shell-truncating-string]
substr : [http://]</pre>

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

语法:

<pre style="margin: 0px; padding: 0px; white-space: pre-wrap; overflow-wrap: break-word; font-family: "Courier New" !important; font-size: 12px !important;">${var:7}</pre>

示例代码:

[
复制代码

](javascript:void(0); "复制代码")

<pre style="margin: 0px; padding: 0px; white-space: pre-wrap; overflow-wrap: break-word; font-family: "Courier New" !important; font-size: 12px !important;">str="http://www.fengbohello.xin3e.com/blog/shell-truncating-string"
echo "string : [{str}]" #其中的 7 表示左边第8个字符开始 substr={str:7} echo "substr : [${substr}]"</pre>

[
复制代码

](javascript:void(0); "复制代码")

执行结果:

<pre style="margin: 0px; padding: 0px; white-space: pre-wrap; overflow-wrap: break-word; font-family: "Courier New" !important; font-size: 12px !important;">string : [http://www.fengbohello.xin3e.com/blog/shell-truncating-string]
substr : [www.fengbohello.xin3e.com/blog/shell-truncating-string]</pre>

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

语法:

<pre style="margin: 0px; padding: 0px; white-space: pre-wrap; overflow-wrap: break-word; font-family: "Courier New" !important; font-size: 12px !important;">${var:0-start:len}</pre>

示例代码:

[
复制代码

](javascript:void(0); "复制代码")

<pre style="margin: 0px; padding: 0px; white-space: pre-wrap; overflow-wrap: break-word; font-family: "Courier New" !important; font-size: 12px !important;">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}]"</pre>

[
复制代码

](javascript:void(0); "复制代码")

执行结果:

<pre style="margin: 0px; padding: 0px; white-space: pre-wrap; overflow-wrap: break-word; font-family: "Courier New" !important; font-size: 12px !important;">string : [http://www.fengbohello.xin3e.com/blog/shell-truncating-string]
substr : [shell]</pre>

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

语法:

<pre style="margin: 0px; padding: 0px; white-space: pre-wrap; overflow-wrap: break-word; font-family: "Courier New" !important; font-size: 12px !important;">${var:0-start}</pre>

示例代码:

[
复制代码

](javascript:void(0); "复制代码")

<pre style="margin: 0px; padding: 0px; white-space: pre-wrap; overflow-wrap: break-word; font-family: "Courier New" !important; font-size: 12px !important;">str="http://www.fengbohello.xin3e.com/blog/shell-truncating-string"
echo "string : [{str}]" #其中的 0-6 表示右边算起第6个字符开始 substr={str:0-6} echo "substr : [${substr}]"</pre>

[
复制代码

](javascript:void(0); "复制代码")

执行结果:

<pre style="margin: 0px; padding: 0px; white-space: pre-wrap; overflow-wrap: break-word; font-family: "Courier New" !important; font-size: 12px !important;">string : [http://www.fengbohello.xin3e.com/blog/shell-truncating-string]
substr : [string]</pre>

目录
相关文章
|
6月前
|
Shell Linux C语言
【Shell 命令集合 文档编辑 】Linux 递归搜索指定字符串 rgrep命令使用指南
【Shell 命令集合 文档编辑 】Linux 递归搜索指定字符串 rgrep命令使用指南
61 0
|
6月前
|
Shell Linux C语言
【Shell 命令集合 文档编辑】Linux 在文件中查找指定的字符串 fgrep命令使用指南
【Shell 命令集合 文档编辑】Linux 在文件中查找指定的字符串 fgrep命令使用指南
83 2
|
Linux Shell
【linux】字符串操作(一)
【linux】字符串操作(一)
75 0
|
2月前
|
Linux Python Perl
Linux命令删除文件里的字符串
Linux命令删除文件里的字符串
34 7
|
3月前
|
JavaScript 关系型数据库 Shell
Linux shell编写技巧之随机取字符串(一)
本文介绍了Linux Shell脚本的编写技巧,包括环境配置、变量命名规则和缩进语法,并提供了一个实例练习,展示如何使用`$RANDOM`变量和`md5sum`命令来生成随机的8位字符串。
42 4
|
3月前
|
Linux Perl
Linux进行文件字符串替换
【8月更文挑战第5天】Linux进行文件字符串替换
434 3
|
4月前
|
Linux PHP
linux查找指定目录下包含指定字符串文件,包含子目录
linux查找指定目录下包含指定字符串文件,包含子目录
39 1
|
5月前
|
Linux 开发工具
Linux下视频截取命令 使用【ffmpeg】使用
Linux下视频截取命令 使用【ffmpeg】使用
46 1
|
4月前
|
Linux Perl
linux 批量查找并替换文件里的指定字符串,linux 批量查找并替换当前目录下所有子目录内文件里的指定字符串
linux 批量查找并替换文件里的指定字符串,linux 批量查找并替换当前目录下所有子目录内文件里的指定字符串
37 0
|
5月前
|
Shell Linux
linux shell脚本字符串 字段分隔符 存入数组 根据下标取值
linux shell脚本字符串 字段分隔符 存入数组 根据下标取值
61 0