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