php-regexHow to use an "or" condition in PHP regex?
An "or" condition in PHP regex can be used to match one of several possible patterns. For example, the following code block will match either the word "cat" or the word "dog":
$pattern = '/cat|dog/';
The output of this code will be either "cat" or "dog".
Code explanation
-
$pattern = '/: This is the start of the regular expression. -
cat: This is the first pattern to be matched. -
|: This is the "or" operator, which allows for multiple patterns to be matched. -
dog: This is the second pattern to be matched. -
/: This is the end of the regular expression.
Helpful links
More of Php Regex
- How to use PHP regex to match a zip code?
- How to use PHP regex to match a year?
- How to use PHP regex to match URL path?
- How to use PHP regex to match time?
- How to remove all non-numeric characters using PHP regex?
- How to remove non-printable characters using PHP regex?
- How to use PHP regex to match a line break?
- How to use PHP regex in a case insensitive mode?
- How to use PHP regex to match a hashtag?
- How to use PHP regex with zero or more occurrences?
See more codes...