madkom / regex
PCRE RegEx wrapper around PHP regular expression functions
Installs: 1 083
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 5
Forks: 1
Open Issues: 0
Requires
- php: ~7
Requires (Dev)
- clover/dump: dev-master
- henrikbjorn/phpspec-code-coverage: @dev
- instaclick/object-calisthenics-sniffs: @dev
- jakub-onderka/php-console-highlighter: 0.*
- jakub-onderka/php-parallel-lint: 0.*
- mdarse/phpunit-notifier: @dev
- phpspec/phpspec: @dev
- phpspec/prophecy: dev-master
- phpunit/phpcov: *
- phpunit/phpunit: 5.*
- satooshi/php-coveralls: dev-master
- squizlabs/php_codesniffer: ^2.3
- symfony/var-dumper: ^3.0
This package is not auto-updated.
Last update: 2024-11-01 19:40:45 UTC
README
Whis package maintain various PCRE element implementations in Object Oriented way. Including Pattern, Matcher, Replacer and Splitter objects.
All methods can throw exceptions: BacktrackLimitException, BadUtf8Exception, BadUtf8OffsetException,
InternalException, JitStackLimitException and RecursionLimitException so you don't have to check
with preg_last_error()
and comparing defines;
Installation
Install with Composer
composer require madkom/regex
Usage
Using pattern:
use Madkom\RegEx\Pattern; $pattern = new Pattern('<((?=[^!])(/)?([^>]+))>'); $pattern->getPattern(); // "/<((?=[^!])(\/)?([^>]+))>/"
Matching pattern:
use Madkom\RegEx\Matcher; use Madkom\RegEx\Pattern; $pattern = new Pattern('<((?=[^/]+)[^>]+)>'); $matcher = new Matcher($pattern, 's'); $subject = <<<EOL <!DOCTYPE html> <html> <head><title>Ala ma kota</title></head> <body><h1>Ala ma kota</h1></body> </html> EOL; $match = $matcher->match($subject); //array:2 [ // 0 => "<!DOCTYPE html>" // 1 => "!DOCTYPE html" //]
Matching pattern capture all matches:
use Madkom\RegEx\Matcher; use Madkom\RegEx\Pattern; $pattern = new Pattern('<((?=[^/]+)[^>]+)>'); $matcher = new Matcher($pattern, 's'); $subject = <<<EOL <!DOCTYPE html> <html> <head><title>Ala ma kota</title></head> <body><h1>Ala ma kota</h1></body> </html> EOL; $match = $matcher->matchAll($subject); //array:2 [ // 0 => array:6 [ // 0 => "<!DOCTYPE html>" // 1 => "<html>" // 2 => "<head>" // 3 => "<title>" // 4 => "<body>" // 5 => "<h1>" // ] // 1 => array:6 [ // 0 => "!DOCTYPE html" // 1 => "html" // 2 => "head" // 3 => "title" // 4 => "body" // 5 => "h1" // ] //]
Replace with replacement:
use Madkom\RegEx\Replacer; use Madkom\RegEx\Pattern; $pattern = new Pattern('<((?=[^!])(/)?([^>]+))>'); $replacer = new Replacer($pattern, 's'); $subject = <<<EOL <!DOCTYPE html> <html> <head><title>Ala ma kota</title></head> <body><h1>Ala ma kota</h1></body> </html> EOL; $replaced = $replacer->replace($subject, '<\\2xhtml:\\3>'); //<!DOCTYPE html>\n //<xhtml:html>\n //<xhtml:head><xhtml:title>Ala ma kota</xhtml:title></xhtml:head>\n //<xhtml:body><xhtml:h1>Ala ma kota</xhtml:h1></xhtml:body>\n //</xhtml:html>
Replace with handler:
use Madkom\RegEx\Replacer; use Madkom\RegEx\Pattern; $pattern = new Pattern('<((?=[^!])(/)?([^>]+))>'); $replacer = new Replacer($pattern, 's'); $subject = <<<EOL <!DOCTYPE html> <html> <head><title>Ala ma kota</title></head> <body><h1>Ala ma kota</h1></body> </html> EOL; $replaced = $replacer->replaceWith($subject, function ($match) { return "<{$match[2]}xhtml:{$match[3]}>"; }); //<!DOCTYPE html>\n //<xhtml:html>\n //<xhtml:head><xhtml:title>Ala ma kota</xhtml:title></xhtml:head>\n //<xhtml:body><xhtml:h1>Ala ma kota</xhtml:h1></xhtml:body>\n //</xhtml:html>
Splitting:
use Madkom\RegEx\Splitter; use Madkom\RegEx\Pattern; $subject = "html, simple, kayword, complex keyword, keyword with ; semicolon"; $pattern = new Pattern('([,]\s*)'); $splitter = new Splitter($pattern); $splitted = $splitter->split($subject); //array:5 [ // 0 => "html" // 1 => "simple" // 2 => "kayword" // 3 => "complex keyword" // 4 => "keyword with ; semicolon" //]
Grepping array:
use Madkom\RegEx\Grepper; use Madkom\RegEx\Pattern; $subjects = [ '<a href="http://madkom.pl">madkom.pl</a>', '<a href="http://google.pl">google.pl</a>', '<a href="http://bing.com">bing.com</a>', '<a href="https://example.pl">example.pl</a>', '<a href="https://example.org">example.org</a>', ]; $pattern = new Pattern('(http[s]?://[a-z0-9]+\.pl)'); $grepper = new Grepper($pattern, 'iU'); $grepped = $grepper->grep($subjects); //array:3 [ // 0 => "<a href="http://madkom.pl">madkom.pl</a>" // 1 => "<a href="http://google.pl">google.pl</a>" // 3 => "<a href="https://example.pl">example.pl</a>" //]
License
The MIT License (MIT)
Copyright (c) 2016 Madkom S.A.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.