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