Linux-shell 字符子串获取

 


前言

这篇文章主要介绍shell脚本编程中的获取子串用法


 

一、常见的子串获取方法

${parameter} 返回变量$parameter的内容
${#parameter} 返回变量$parameter的内容长度,适用于特殊变量
${parameter:offest} 返回变量$parameter中,从offest位置后到结尾的字符串
${parameter:offest:length} 返回变量$parameter中,从offest位置后提取长度为length的字符串
${parameter#word} 返回变量$parameter中,开头开始删除最短匹配的word字符串
${parameter##word} 返回变量$parameter中ÿ

你可能感兴趣的:(shell,linux,shell,字符串)