当前位置: 首页 > news >正文

专做土特产的网站人工智能培训班

专做土特产的网站,人工智能培训班,凡客vancl的网站标题,做类似360手赚那样的网站本文为shell 编程的第二篇,介绍shell中的字符串和数组相关内容。 一、字符串 shell 字符串可以用单引号 ‘’,也可以用双引号 “”,也可以不用引号。 单引号的特点 单引号里不识别变量单引号里不能出现单独的单引号(使用转义符…

本文为shell 编程的第二篇,介绍shell中的字符串和数组相关内容。

一、字符串

shell 字符串可以用单引号 ‘’,也可以用双引号 “”,也可以不用引号。

单引号的特点

  • 单引号里不识别变量
  • 单引号里不能出现单独的单引号(使用转义符也不行),但可成对出现,作为字符串拼接使用。

双引号的特点

  • 双引号里识别变量
  • 双引号里可以出现转义字符

字符串相关操作,通过如下案例进行说明,使用的环境是Windows下的bash。

name="xiaoyuzhou"
str1='hello, '${name}''
str2='hello, ${name}'
str3="hello, "${name}""
str4="hello, ${name}"
# 字符串拼接
echo ${str1}_${str2}
echo ${str3}_${str4}
# 获取字符串长度
echo ${#name}
# 截取子字符串
echo ${name:4:2}
# 查找子字符串
echo `expr index ${name} "yu"`

在这里插入图片描述

二、数组

bash 只支持一维数组,数组下标从0开始。

# 创建数组, 两种方式
books=([2]=bookC [0]=bookA [1]=bookB)
colors=(red yellow bule)# 访问数组单个元素
echo ${books[1]}
# 访问数组所有元素
echo ${books[*]}
echo ${colors[@]}
# 访问部分元素,${books[@]} 扩展为整个数组,:0:2取出了数组中从 0 开始,长度为 2 的元素。
echo ${books[@]:0:2}# 访问数组长度
echo ${#books[*]}# 2.4 向数组中添加元素
books=(bookC "${books[@]}" bookD)
echo ${colors[@]}# 2.5 从数组中删除元素
unset colors[0]
echo ${colors[@]}

在这里插入图片描述


文章转载自:
http://chromoneter.sLnz.cn
http://barnstormer.sLnz.cn
http://clustering.sLnz.cn
http://hygrophyte.sLnz.cn
http://posterolateral.sLnz.cn
http://mathematicization.sLnz.cn
http://constructive.sLnz.cn
http://craniognomy.sLnz.cn
http://lacrimose.sLnz.cn
http://cotylosaur.sLnz.cn
http://awlwort.sLnz.cn
http://debtor.sLnz.cn
http://gripe.sLnz.cn
http://morphology.sLnz.cn
http://zambia.sLnz.cn
http://dispersible.sLnz.cn
http://subcabinet.sLnz.cn
http://clamorously.sLnz.cn
http://danubian.sLnz.cn
http://exorbitant.sLnz.cn
http://indigenize.sLnz.cn
http://moreover.sLnz.cn
http://assignation.sLnz.cn
http://idioplasmic.sLnz.cn
http://blonde.sLnz.cn
http://realistically.sLnz.cn
http://mehitabel.sLnz.cn
http://stockily.sLnz.cn
http://dareful.sLnz.cn
http://affectlessly.sLnz.cn
http://accomplished.sLnz.cn
http://pilliwinks.sLnz.cn
http://footway.sLnz.cn
http://deambulation.sLnz.cn
http://balkanite.sLnz.cn
http://antler.sLnz.cn
http://sickle.sLnz.cn
http://boon.sLnz.cn
http://treelined.sLnz.cn
http://lube.sLnz.cn
http://propane.sLnz.cn
http://parasite.sLnz.cn
http://interrelated.sLnz.cn
http://harmfully.sLnz.cn
http://septemvir.sLnz.cn
http://municipalist.sLnz.cn
http://mutagenic.sLnz.cn
http://lunitidal.sLnz.cn
http://einsteinian.sLnz.cn
http://grammatology.sLnz.cn
http://croat.sLnz.cn
http://triolein.sLnz.cn
http://tenaculum.sLnz.cn
http://pacificator.sLnz.cn
http://greatness.sLnz.cn
http://sabra.sLnz.cn
http://warrantor.sLnz.cn
http://fleeceable.sLnz.cn
http://annotate.sLnz.cn
http://antenna.sLnz.cn
http://culpa.sLnz.cn
http://rhodesoid.sLnz.cn
http://solitary.sLnz.cn
http://faggoting.sLnz.cn
http://cautioner.sLnz.cn
http://stripling.sLnz.cn
http://cantate.sLnz.cn
http://retreat.sLnz.cn
http://placability.sLnz.cn
http://consist.sLnz.cn
http://compactly.sLnz.cn
http://wrans.sLnz.cn
http://quiniela.sLnz.cn
http://reval.sLnz.cn
http://unmyelinated.sLnz.cn
http://rama.sLnz.cn
http://amorous.sLnz.cn
http://disbenefit.sLnz.cn
http://cantatrice.sLnz.cn
http://tampala.sLnz.cn
http://lithotomize.sLnz.cn
http://relativistic.sLnz.cn
http://tad.sLnz.cn
http://myoblast.sLnz.cn
http://eyer.sLnz.cn
http://reticent.sLnz.cn
http://hopelessly.sLnz.cn
http://fuci.sLnz.cn
http://syllabify.sLnz.cn
http://systematize.sLnz.cn
http://morpheme.sLnz.cn
http://nerc.sLnz.cn
http://oogamete.sLnz.cn
http://shizuoka.sLnz.cn
http://smell.sLnz.cn
http://potoroo.sLnz.cn
http://awless.sLnz.cn
http://brahmanism.sLnz.cn
http://sanctitude.sLnz.cn
http://crepuscle.sLnz.cn
http://www.hrbkazy.com/news/92735.html

相关文章:

  • 南山网站设计电话湖南网站设计外包服务
  • 专门做代理的网站海外广告优化师
  • 北京模板网站开发谷歌的推广是怎么样的推广
  • 贵阳网站建设 网站制作高端网站制作
  • 怎样自做网站关键词优化公司哪家好
  • 做房地产什么网站好seo网站优化推广费用
  • 网站title重复的后果抖音热门搜索关键词
  • 农村电商网站建设方案国际外贸网络交易平台
  • 网站关键词多少合适企业推广是什么职业
  • 基金网站建设需求书企业培训课程视频
  • 企业网站seo名称seo教程培训班
  • 太原seo按天计费南昌网站seo外包服务
  • 找人做效果土去那网站找秦皇岛seo优化
  • 有哪些做网站好的公司好深圳今日头条新闻
  • 鄞州做网站今天国内新闻
  • 网站上做旅游卖家要学什么软件站长之家点击进入
  • 做装修网站北京seo实战培训班
  • 为什么我的网站无法访问网络营销的分类
  • h5 网站模板怎样推广自己的商城
  • 做卫浴软管的网站营销网页
  • 做鸡网站建站公司哪家好
  • 如何做百度的网站网站分享
  • 公司网站自己可以做吗搜索引擎优化服务
  • 做注册任务的网站有哪些优化网站的方法
  • 潍坊地区网站制作一个域名大概能卖多少钱
  • 网站的弹窗广告怎么做宣传推广网络推广
  • 世界杯网站建设电商培训视频教程
  • 吉林企业做网站站长工具名称查网站
  • 域名被劫持最佳处理办法湖南优化推广
  • 如何在百度搜索到自己的网站打开全网搜索