conkal/ztring

A string manipulation library

v1.0.0 2021-07-08 09:32 UTC

This package is auto-updated.

Last update: 2024-12-08 17:39:06 UTC


README

Latest Stable Version License Total Downloads Build

A PHP string manipulation library.

Installation

composer require conkal/ztring
use Conkal\ztring;

OO and Chaining

The library offers OO method chaining, as seen below:

use Conkal\ztring;
echo ztring('this is test')->collapseWhitespace()->swapCase(); // THIS IS TEST

Conkal\ztring has a __toString() method, which returns the current string when the object is used in a string context, ie: (string) ztring::create('foo') // 'foo'

Implemented Interfaces

Conkal\ztring implements the IteratorAggregate interface, meaning that foreach can be used with an instance of the class:

$string = \Conkal\ztring::create('test');
foreach ($string as $char) {
    echo $char;
}
// 'test'

It implements the Countable interface, enabling the use of count() to retrieve the number of characters in the string:

$string = \Conkal\ztring::create('test');
count($string);  // 3

Furthermore, the ArrayAccess interface has been implemented. As a result, isset() can be used to check if a character at a specific index exists. And since Conkal\ztring is immutable, any call to offsetSet or offsetUnset will throw an exception. offsetGet has been implemented, however, and accepts both positive and negative indexes. Invalid indexes result in an OutOfBoundsException.

$string = \Conkal\ztring::create('test');
echo $string[1];     // 't'

Class methods

create(string $str)

Creates a ztring object and assigns string property. $str is cast to a string prior to assignment.

$string = \Conkal\ztring::create('test'); // 'test'

Instance Methods

append(string $string)

Returns a new string with $string appended.

ztring('This is a ')->append('test.'); // This is a test.
at(int $index)

Returns the character at $index, with indexes starting at 0.

ztring('This is a test')->at(0); // 'T'
ztring('This is a test')->at(1); // 'h'
ztring('This is a test')->at(-1); // 't'
camelcase()

Returns a camelCase version of the string. Trims surrounding spaces, capitalizes letters following digits, spaces, dashes and underscores, and removes spaces, dashes, as well as underscores.

ztring('Camel-Case')->camelcase(); // 'camelCase'
chars()

Returns an array consisting of the characters in the string.

ztring('test')->chars(); // ['t','e','s','t']
collapseWhitespace()

Trims the string and replaces consecutive whitespace characters with a single space. This includes tabs and newline characters, as well as multibyte whitespace such as the thin space and ideographic space.

ztring('This   is a               test')->collapseWhitespace(); // 'This is a test'
endsWith(string $substring [, boolean $caseSensitive = true ])

Returns true if the string ends with $substring, false otherwise. By default, the comparison is case-sensitive, but can be made insensitive by setting $caseSensitive to false.

ztring('this is a test')->endsWith('test'); // true
ensureLeft(string $substring)

Ensures that the string begins with $substring. If it doesn't, it's prepended.

ztring('foobar')->ensureLeft('http://'); // 'http://foobar'
ensureRight(string $substring)

Ensures that the string ends with $substring. If it doesn't, it's appended.

ztring('foobar')->ensureRight('.com'); // 'foobar.com'
firstChar()

Returns the first $n characters of the string.

ztring('test')->firstChar(); // 't'
firstXChars()

Returns the first $n characters of the string.

ztring('test')->first3Chars(); // 'tes'
lastChar()

Returns the last $n characters of the string.

ztring('test')->lastChar(); // 't'
lastXChars()

Returns the last $n characters of the string.

ztring('test')->last3Chars(); // 'est'
length()

Returns the length of the string. An alias for PHP's mb_strlen() function.

ztring('fòôbàř')->length(); // 6
lowerCaseFirst()

Converts the first character of the supplied string to lower case.

ztring('Test')->lowerCaseFirst(); // 'test'
prepend(string $string)

Returns a new string starting with $string.

ztring('bàř')->prepend('fòô'); // 'fòôbàř'
removeLeft(string $substring)

Returns a new string with the prefix $substring removed, if present.

replace(string $search, string $replacement)

Replaces all occurrences of $search in $str by $replacement.

ztring('This is test.')->replace('This ', 'These '); // 'These is test.'
reverse()

Returns a reversed string. A multibyte version of strrev().

ztring('fòôbàř')->reverse(); // 'řàbôòf'
random()

Create a random string

\Conkal\ztring::random(); 
slug( [string $separator = '-'])
ztring('This is a testğüşçö')->slug(); // 'this-is-a-test'
startsWith(string $substring [, boolean $caseSensitive = true ])

Returns true if the string begins with $substring, false otherwise. By default, the comparison is case-sensitive, but can be made insensitive by setting $caseSensitive to false.

ztring('This is a test')->startsWith('This', false); // true
substr(int $start [, int $length ])

Returns the substring beginning at $start with the specified $length. It differs from the mb_substr() function in that providing a $length of null will return the rest of the string, rather than an empty string.

ztring('This is a test')->substr(0, 4); // 'This'
swapCase()

Returns a case swapped version of the string.

ztring('Test')->swapCase(); // 'tEST'
titleCase()

Returns a trimmed string with the first letter of each word capitalized.

ztring('this is a test')->titleCase();
// 'This Is A Test'
ascii($languageSpecific)

Returns an ASCII version of the string.

  $languageSpecific = [
            'ğ' => 'g',
            'ü' => 'u',
            'ı' => 'i',
            'ş' => 's',
            'ç' => 'c',
            'ö' => 'o',
            'Ğ' => 'G',
            'Ü' => 'U',
            'Ş' => 'S',
            'Ö' => 'O',
            'Ç' => 'C',
            'İ' => 'I',
        ];
ztring('türkçe')->ascii($languageSpecific); // 'turkce'
toBoolean()

Returns a boolean representation of the given logical string value. For example, 'true', '1', 'on' and 'yes' will return true. 'false', '0', 'off', and 'no' will return false. In all instances, case is ignored.

ztring('OFF')->toBoolean(); // false
toLowerCase()

Converts all characters in the string to lowercase. An alias for PHP's mb_strtolower().

ztring('THIS')->lowerCase(); // 'this'
toTitleCase()

Converts the first character of each word in the string to uppercase.

ztring('this is a test')->titleCase(); // 'Fòô Bàř'
uppercase()

Converts all characters in the string to uppercase. An alias for PHP's mb_strtoupper().

ztring('test')->uppercase(); // 'TEST'
trim([, string $chars])

Returns a string with whitespace removed from the start and end of the string. Supports the removal of unicode whitespace. Accepts an optional string of characters to strip instead of the defaults.

ztring('  test  ')->trim(); // 'test'
upperCaseFirst()

Converts the first character of the supplied string to upper case.

ztring('this is a test')->upperCaseFirst(); // 'This is a test'
words()

Returns words as array

ztring('this is a test')->words(); // ['This', 'is', 'a', 'test']
sanitize()

Removes all special characters

ztring('this is a test?--*üğişçö')->sanitize(); // 'this is a test'
acronym()

Creates an acronym

ztring('This is a test')->acronym(); // 'TIAT'
ztring('This is a test')->acronym('.'); // 'T.I.A.T.'
number()

return only digits between 0-9

ztring('1---*?=)(2hjkghkj,iüğ\ş3/*-')->number(); //123

Tests

From the project directory, tests can be ran using phpunit

License

Released under the MIT License - see LICENSE.txt for details.