「Bash」exprコマンドで文字列の長さを計算する
書式
変数名 = 値
expr “$変数名": ' .*’
exprコマンドで文字列の長さを計算します。
使用例
#!/bin/bash #Bash script to find the length of a string str="Welcome to arkgame.com" length=`expr "$str" : '.*'` echo "対象文字列'$str' の長さ $length"
実行結果
# sh test04.sh
対象文字列’Welcome to arkgame.com’ の長さ 22