dev-master
9999999-devphpABLE regular expressions library
MIT
The Requires
- php >=7.2.0
The Development Requires
by hacpaka
regular expressions phpable
phpABLE regular expressions library
The lightweight library provides a standardized way to use regular expressions in php including the most popular prepared templates., (*1)
Here's the simpler way to install the Able/Reglib package via composer:, (*2)
composer require able/reglib
Now you can use library features anywhere in the code:, (*3)
use \Able\Reglib; $Regex = new Regex('/vendor/'); echo $Regex->replace('vendor/reglib', 'able')); //> able/reglib
Or, (*4)
use \Able\Reglib; $Regex = new Regex('/^[A-Za-z]+/'); echo $Regex->take('winter is coming')); //> winter
This package is released under the MIT license., (*5)
phpABLE regular expressions library
MIT
regular expressions phpable