3 lines
95 B
Bash
3 lines
95 B
Bash
string='Hello, world!'
|
|
length=${#string}
|
|
echo $length # if you want it printed to the terminal
|