「Bash」wcコマンドで文字列の長さを計算する
書式
変数名 =値
echo $変数名 | wc -c
wcコマンドで指定文字列の長さを計算します。
使用例
#!/bin/bash #Bash script to find the length of a string 対象文字列 '$target' is $length"
実行結果
# sh test05.sh
対象文字列 'Welcome to arkgame.com’ is 23
Coding Changes the World
書式
変数名 =値
echo $変数名 | wc -c
wcコマンドで指定文字列の長さを計算します。
使用例
#!/bin/bash #Bash script to find the length of a string 対象文字列 '$target' is $length"
実行結果
# sh test05.sh
対象文字列 'Welcome to arkgame.com’ is 23