hassanhs97/string-utils

Simple string utils for dealing easier with them

Installs: 12

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 1

Open Issues: 0

pkg:composer/hassanhs97/string-utils

v1.0.0 2023-03-14 08:21 UTC

This package is not auto-updated.

Last update: 2026-01-14 20:24:47 UTC


README

Simple string utils for dealing easier with them

Installation

Install using composer:

composer require hstring/string-utils ‌

Example

<?php
require __DIR__.'/vendor/autoload.php';

use \HString\StringUtils\Str;

var_dump(Str::contains('abcd', ['ab', 'x']));