Git Product home page Git Product logo

regex's Introduction

Regex

A set of ready-made regex helper methods for use in your Laravel application.

Latest Stable Version

Installation

composer require hotmeteor/regex

Usage

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

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.

Methods

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

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.

Methods

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.

regex's People

Contributors

hotmeteor avatar

Stargazers

Fernando Costa avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.