「Bash」wcコマンドで文字列の長さを計算する

2021年12月3日

書式
変数名 =値
echo $変数名 | wc -c
wcコマンドで指定文字列の長さを計算します。

使用例

#!/bin/bash  
#Bash script to find the length of a string  

target="Welcome to arkgame.com  
length=`echo $target | wc -c`  

echo "対象文字列 '$target' is $length"

実行結果
# sh test05.sh
対象文字列 'Welcome to arkgame.com’ is 23

batch

Posted by arkgame