karakter jumlah bash dalam variabel

$ mystring="one two three four five"
$ echo "string length: ${#mystring}"
string length: 23
Disgusted Deer