These are exercism's exercises I did to improve myself
- string's first letter lowercase:
"${str,}"
- whole string lowercase:
"${str,,}"
- get string length:
"${#str}"
- strings replaces first match:
"${str/from/to}"
- strings replaces all matches:
"${str//from/to}"