labile/text-matcher

There is no license information available for the latest version (1.0.1) of this package.

Maintainers

Package info

github.com/labi-le/text-matcher

pkg:composer/labile/text-matcher

Statistics

Installs: 235

Dependents: 1

Suggesters: 0

Stars: 1

Open Issues: 0

1.0.1 2021-08-14 11:17 UTC

This package is auto-updated.

Last update: 2026-03-09 18:22:30 UTC


README

GitHub license Packagist Stars Packagist Stats

Документация на русском языке

Installation

composer require labile/text-matcher

A simple string comparison library

<?php

declare(strict_types=1);

use Astaroth\TextMatcher;

$textMatcher = new TextMatcher("i love Katya", "love", TextMatcher::CONTAINS);
if ($textMatcher->compare()){
    //...
}