November 2017
Intermediate to advanced
705 pages
26h 56m
English
In This Chapter
Regular expressions are an amazingly powerful—but often taxing—tool available in most of today’s programming languages and even in many applications. Think of regular expressions as an elaborate system of matching patterns. You first write the pattern and then use one of PHP’s built-in functions to apply the pattern to a value (regular expressions are applied to strings, even if that means a string with a numeric value). Whereas a string function could see if the name John is in some text, a regular expression could ...