单项选择题
A.r?aB.awwC.?awD.er?
在shell脚本中,已知string="hasaki",请问echo ${string:1:3}将输出什么内容...
单项选择题在shell脚本中,已知string="hasaki",请问echo ${string:1:3}将输出什么内容?()
A.hasB.asaC.hhhD.aliakatong
在shell脚本中,下面哪种方法可以获得字符串变量string的长度?()A.#{$string}B.${#s...
单项选择题在shell脚本中,下面哪种方法可以获得字符串变量string的长度?()
A.#{$string}B.${#string}C.${$string}D.#{#string}
在shell脚本中,good是已知变量,下面哪种方法不可以实现字符串的拼接赋值?()A.txt="I am "...
单项选择题在shell脚本中,good是已知变量,下面哪种方法不可以实现字符串的拼接赋值?()
A.txt="I am "$good"vegetable!"B.txt="I am ${good}vegetable!"C.txt=’I am ’$good’vegetable!’D.txt=’I am ${good}vegetable!’