sebastiansulinski / regex-kit
Regex Kit : purpose-made methods for easy string replacement
1.0.1
2015-03-02 16:25 UTC
Requires
- php: >=5.4.0
Requires (Dev)
- phpunit/phpunit: 4.7.*@dev
This package is auto-updated.
Last update: 2024-11-05 19:09:55 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'
]
);