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