Pattern matching in Bash
Pattern matching is a powerful feature in Bash that allows you to compare a string to a pattern to find a match or perform an action based on the result of the comparison. This is useful in situations such as checking the format of a string or extracting a substring from a larger string.
This article discusses how to do pattern matching in Bash and introduces some common operators and techniques used in pattern matching.
Pattern matching using the =~ operator
To understand how pattern matching works in Bash, let's first look at =~
the operator used to perform pattern matching. This operator takes two operands: the string to match and the pattern to compare.
For example, suppose we have a string called my_string that contains a URL and we want to check whether it starts with "http" or "https". We can use the =~ operator to perform this comparison.
my_string="https://www.example.com"
if [[ $my_string =~ ^https?:// ]]; then
echo "The string starts with a valid URL"
fi
Output:
The string starts with a valid URL
In the code above, we use =~
the operator to ^https?://
compare the my_string variable to the pattern . ^
The character indicates that the pattern must match the beginning of the string, while ?
the character indicates that the preceding character (in this case, the s in https) is optional.
This means that the pattern will match "http://" or "https://" at the beginning of the string.
If the comparison is successful, the if statement is executed and the message "The string starts with a valid URL" is printed.
Using *
the operator for pattern matching
Another common operator in pattern matching is *
the (asterisk) character, which indicates that the preceding character can be matched zero or more times. For example, suppose we have a string containing a number and we want to check whether it is a valid decimal number with up to two decimal places.
We can use *
the operator to perform this comparison.
my_string="3.14"
if [[ $my_string =~ ^[0-9]+.[0-9]{0,2}$ ]]; then
echo "The string is a valid decimal number"
else
echo "The string is not a valid decimal number"
fi
Output:
The string is a valid decimal number
In the above code, we use =~
the operator to ^[0-9]+\.[0-9]{0,2}$
compare the my_string variable with the pattern . ^
The character indicates that the pattern must match the beginning of the string, whereas $
the character indicates that the pattern must match the end of the string.
[0-9]
The character class matches any digit from 0 to 9, and the + character indicates that the preceding character class must match one or more times.
We use the \ (backslash) character to escape .
the (dot) character, which is used to match any single character. {0,2}
The quantifier means that the preceding character (in this case, [0-9]
the character class) must be matched zero to two times.
This means that the pattern will only match numbers with up to two decimal places, such as "3.14" or "42.00".
If the comparison is successful, the if statement is executed and the message "This string is a valid decimal number" is printed.
Pattern matching using subpatterns
Another common technique used in pattern matching is the use of subpatterns. A subpattern is a portion of a pattern enclosed in parentheses that can be used to group characters or to refer to a matching substring within the input string.
For example, suppose we have a string containing a date in the format "YYYY-MM-DD" and we want to extract the year, month, and day from the string. We can use a subpattern to perform this extraction.
my_string="2022-11-20"
if [[ $my_string =~ ^([0-9]{4})-([0-9]{2})-([0-9]{2})$ ]]; then
year=${BASH_REMATCH[1]}
month=${BASH_REMATCH[2]}
day=${BASH_REMATCH[3]}
echo "The year is: $year"
echo "The month is: $month"
echo "The day is: $day"
fi
Output:
The year is: 2022
The month is: 11
The day is: 20
In the above code, we use =~
the operator to match the my_string variable with ^([0-9]{4})-([0-9]{2})-([0-9]{2} )$
the pattern. The ^
and $
characters indicate that the pattern must match the entire string, while the ([0-9]{4})、([0-9]{2})
and ([0-9]{2})
subpatterns match the year, month, and day portions of a date respectively.
If the comparison succeeds, the if statement is executed to extract the year, month, and day from the input string. The extracted substrings are stored in the BASH_REMATCH array and can be accessed using indexes 1, 2, and 3, which correspond to the first, second, and third subpatterns, respectively.
In summary, pattern matching is a powerful feature in Bash that allows you to compare a string to a pattern to find a match or perform an action based on the comparison result. This can be =~
done using the operator, which takes a string and a pattern as operands and returns true if the string matches the pattern.
Common operators and techniques used in pattern matching include *
the (asterisk) operator, which matches the preceding character zero or more times, and subpatterns, which allow you to group characters or extract matching substrings from the input string.
For reprinting, please send an email to 1244347461@qq.com for approval. After obtaining the author's consent, kindly include the source as a link.
Article URL:https://www.jiyik.com/en/xwzj/opersys_10024.html
Related Articles
Hosting Docker Internal in Linux
Publish Date:2025/03/23 Views:143 Category:OPERATING SYSTEM
-
Docker allows developers to efficiently build, test, and deploy applications by packaging them in standardized units called containers. When working with Docker containers, you may encounter scenarios where you need to connect a container t
Setting the working directory in Docker
Publish Date:2025/03/23 Views:198 Category:OPERATING SYSTEM
-
If present, the working directory of a process in Compute is a directory in a linked hierarchical file system that is dynamic for each process. In Docker, we can set our working directory by editing the Dockerfile and adding the key WORKDIR
How to get IP address in CentOS
Publish Date:2025/03/23 Views:108 Category:OPERATING SYSTEM
-
This short article is a brief introduction to CentOS followed by a brief discussion on how we can get the server IP address in CentOS using the Command Line Interface (CLI). This article will discuss some of the commands and their usage for
Updating YUM in Linux
Publish Date:2025/03/23 Views:148 Category:OPERATING SYSTEM
-
This article will teach us how to update YUM in Linux and how to install, update, remove, find and manage packages on a Linux system. We have also seen the difference yum update between and in Linux yum upgrade . yum update command in Linux
Installing Deb Files in Linux
Publish Date:2025/03/23 Views:93 Category:OPERATING SYSTEM
-
In this Linux article, we will learn how to install .deb (Debian Package) files on Linux systems. We will also see how to remove .deb files after installation. More importantly, we will learn different ways to install .deb files on Linux sy
lsof Command in Linux
Publish Date:2025/03/23 Views:100 Category:OPERATING SYSTEM
-
In this Linux article, we will learn about lsof command in Linux operating system. We will see how to use this command for different purposes in Linux. We use lsof the lsof command to verify the ports in use on the Linux operating system. U
How to solve the problem of not being able to execute binary files in Linux
Publish Date:2025/03/23 Views:108 Category:OPERATING SYSTEM
-
In this article, we will learn how to execute binary files in Linux. We will also learn how to troubleshoot the error if Linux fails to execute the binary file. Usually, this error occurs when we run shell scripts in Linux. This article wil
Error in Linux Mesg: Ttyname Failed: Inappropriate Ioctl for Device Error
Publish Date:2025/03/23 Views:178 Category:OPERATING SYSTEM
-
In this article, we will learn how to fix the error mesg: ttyname failed: Inappropriate ioctl for device in Linux . We will discuss some of the causes of this error and show you how to fix it. Let's start with what causes this error in Linu
ps aux command in Linux
Publish Date:2025/03/23 Views:57 Category:OPERATING SYSTEM
-
If you are using Linux and are looking for a tool that can monitor all the processes running on your system, then you should use the command ps aux. This command will show you an overview of all running processes. It is very useful for trou