1. Regular expressions
If you have not used regular expressions, you may not be familiar with this term and concept. However, they are not as novel as you might think.
Remember how to find files on your hard disk. Are you sure you will use it? and * characters to help find the file you are looking for. Character matches the file name in the
A single character, while * matches one or more characters. One such as ' data? '. DAT ' mode can be found in the following files:
Data1.dat
Data2.dat
Datax.dat
DataN.dat
What if I use the * character instead? Characters, the number of files found will be enlarged. ' Data*.dat ' can match all of the following file names:
Data.dat
Data1.dat
Data2.dat
Data12.dat
Datax.dat
DataXYZ.dat
Although this method of searching for files is certainly useful, it is also very limited. and * The limited ability of wildcards can give you an overview of what regular expressions can do
But the regular expressions are more powerful and more flexible.
http://www.bkjia.com/PHPjc/445145.html www.bkjia.com true http://www.bkjia.com/PHPjc/445145.html techarticle 1. Regular expressions If you have not used regular expressions before, you may not be familiar with the term and concept. However, they are not as novel as you might think. Please recall ...