Bash provides several methods to extract substrings from strings. Here are a few commonly used methods:
- 
Using parameter expansion:
- Syntax: 
${string:offset:length} offsetis the starting position of the substring (0-based)lengthis the length of the substring- Example:
string="Hello, world!"
echo "${string:7:5}"
Output: world
 
 - Syntax: 
 - 
Using the
cutcommand:- Syntax: 
cut -c start-end startis the starting position of the substring (1-based)endis the ending position of the substring (1-based)- Example:
string="Hello, world!"
echo "$string" | cut -c8-12
Output: world
 
 - Syntax: 
 - 
Using the
sedcommand:- Syntax: 
sed -n start,endp startis the starting line of the substring (1-based)endis the ending line of the substring (1-based)- Example:
string="Hello, world!"
echo "$string" | sed -n '8,12p'
Output: world
 
 - Syntax: 
 
Note: The examples provided here are for demonstration purposes only. You may need to adjust the parameters, such as offset, length, start, and end, to match your specific requirements.