Stars: 235
Forks: 8
Pull Requests: 1
Issues: 2
Watchers: 3
Last Updated: 2023-02-21 22:01:11
A set of ready-made regex helper methods for use in your Laravel application.
License: MIT License
Languages: PHP
A set of ready-made regex helper methods for use in your Laravel application.
composer require hotmeteor/regex
Regex comes with a set of common regex patterns that are ready to use. These patterns can be used to either replace or match against values. Every pattern is both case-insensitive and able to interpret unicode characters, and should support all languages.
Additionally, beyond the methods below both the underlying match
and replace
methods are exposed to pass in custom patterns.
Match methods return true or false depending on if the subject value contains anything but the expected pattern.
You may optional allow whitespace by passing true
as a second parameter.
Regex::isAlpha($subject, $allowWhitespace = false)
Checks if the value contains anything but letters.
Regex::isAlphanumeric($subject, $allowWhitespace = false)
Checks if the value contains anything but letters and numbers.
Regex::isAlphadash($subject, $allowWhitespace = false)
Checks if the value contains anything but letters, numbers, and .-_
.
Regex::isDigits($subject, $allowWhitespace = false)
Checks if the value contains anything but integers.
Regex::isNumeric($subject)
Checks if the value contains anything but numeric values, including decimals and negative numbers. Does not allow for whitespace.
Regex::isUuid($subject)
Checks if the value is a UUID. Does not allow for whitespace.
Regex::isIp($subject) // or
Regex::isIpv4($subject)
Checks if the value is an IPv4 address. Does not allow for whitespace.
Regex::isIpv6($subject)
Checks if the value is an IPv6 address. Does not allow for whitespace.
Replace methods replace anything in the subject value that doesn't match the pattern with the provided replacement.
The default replacement is nothing: it just removes the character.
Regex::alpha($subject, $replace = '')
Replaces all characters in the subject except letters.
Regex::alphanumeric($subject, $replace = '')
Replaces all characters in the subject except letters and numbers.
Regex::alphadash($subject, $replace = '')
Replaces all characters in the subject except letters, numbers, and .-_
.
Regex::digits($subject, $replace = '')
Replaces all characters in the subject except integers.
Regex::numeric($subject, $replace = '')
Replaces all characters in the subject except numeric values, including decimals and negative numbers.
Regex::uuid($subject)
Replaces all characters in the subject to form it into a UUID. Does not accept a replacement value.
Regex::ip($subject) // or
Regex::ipv4($subject)
Replaces all characters in the subject to form it into an IPv4 address. Does not accept a replacement value.
Regex::ipv6($subject)
Replaces all characters in the subject to form it into an IPv6 address. Does not accept a replacement value.