able/reglib

phpABLE regular expressions library

v0.5.2 2021-05-23 02:29 UTC

This package is auto-updated.

Last update: 2024-04-14 23:51:39 UTC


README

The lightweight library provides a standardized way to use regular expressions in php including the most popular prepared templates.

Requirements

Install

Here's the simpler way to install the Able/Reglib package via composer:

composer require able/reglib

Usage

Now you can use library features anywhere in the code:

use \Able\Reglib;
$Regex = new Regex('/vendor/');
echo $Regex->replace('vendor/reglib', 'able'));

//> able/reglib

Or

use \Able\Reglib;
$Regex = new Regex('/^[A-Za-z]+/');
echo $Regex->take('winter is coming'));

//> winter

License

This package is released under the MIT license.