Bashで文字列の長さを調べるサンプル
書式
文字列の長さを調べるには下記のようにします。
$[#string_variable_name}
$[#文字列の変数名]
使用例
#!/bin/bash #Bash program to find the length of a string length=${#target} echo "文字列 '$target' の長さ $length"
実行結果
# sh test02.sh 文字列 'Welcome to arkgame.com' の長さ 22