2017 © Pedro Peláez
 

library reglib

phpABLE regular expressions library

image

able/reglib

phpABLE regular expressions library

  • Monday, June 25, 2018
  • by able
  • Repository
  • 1 Watchers
  • 1 Stars
  • 15 Installations
  • PHP
  • 4 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Introduction

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

Requirements

Install

Here's the simpler way to install the Able/Reglib package via composer:, (*2)

composer require able/reglib

Usage

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

License

This package is released under the MIT license., (*5)

The Versions

25/06 2018

dev-master

9999999-dev

phpABLE regular expressions library

  Sources   Download

MIT

The Requires

  • php >=7.2.0

 

The Development Requires

by hacpaka

regular expressions phpable