Download the PHP package thipages/stringpattern without Composer
On this page you can find all versions of the php package thipages/stringpattern. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package stringpattern
stringpattern
Simple String Pattern Recognition
Installation
composer require thipages\stringpattern
Usage
sequence syntax is
- N for numeric
- A for alphabet (including accented letters is
$accents
is set totrue
) - the character for any non alphanumeric character
Examples
input | sequence | sequence_occ |
---|---|---|
123 | N | N3 |
123.1 | N.N | N3.1N1 |
12,1 | N,N | N2,1N1 |
[email protected] | [email protected] | [email protected] |
input | sequence | sequence_occ | accents |
---|---|---|---|
rémanent | A | A8 | true |
rémanent | AéA | A1é1A6 | false |
Use Case
Find/Check data source column format
All versions of stringpattern with dependencies
PHP Build Version
Package Version
Requires
ext-mbstring Version
*
The package thipages/stringpattern contains the following files
Loading the files please wait ....