Bash
Strings Commands
Manipulate strings in Bash. Learn parameter expansion, substring extraction, search and replace.
14 commands
Pro Tips
Use '${var//find/replace}' for global replacement, '${var/find/replace}' for first occurrence.
Use '${#var}' to get string length without external commands like 'wc -c'.