Regex Kit : purpose-made methods for easy string replacement

1.0.1 2015-03-02 16:25 UTC

This package is auto-updated.

Last update: 2024-04-05 17:56:24 UTC


README

Regex Kit : purpose-made handfull of methods for easy string replacement

Usage

Example 1

Find uri's and replace them with anchor tags.

use SSD\RegexKit\Factory;


echo Factory::anchor(
    'Visit documentation at http://github.com or for more info use http://google.com',
    [
        'target' => '_blank'
    ]
);

Example 2

Find @User and replace them with anchor tags.

use SSD\RegexKit\Factory;


echo Factory::atUser(
    'Hey @JohnDoe, thanks for sorting this out!',
    '/user/',
    [
        'target' => '_blank',
        'title' => 'View user profile'
    ]
);