2017 © Pedro Peláez
 

library string

A collection of basic string manipulation functions.

image

gears/string

A collection of basic string manipulation functions.

  • Thursday, December 1, 2016
  • by brad-jones
  • Repository
  • 1 Watchers
  • 4 Stars
  • 22,389 Installations
  • PHP
  • 10 Dependents
  • 0 Suggesters
  • 4 Forks
  • 0 Open issues
  • 15 Versions
  • 19 % Grown

The README.md

Looking for maintainers, I no longer do much if any PHP dev, I have moved on, mostly work in dotnet core, node.js & golang these days. If anyone is keen to take over these projects, get in touch - brad@bjc.id.au, (*1)

The String Gear

Build Status Windows Build Status Latest Stable Version Total Downloads License HHVM Tested Coverage Status Scrutinizer Code Quality, (*2)

An object oriented way to work with strings in PHP, with multibyte support baked in., (*3)

Credit & Inspiration

The original library https://github.com/danielstjules/Stringy The voku fork https://github.com/voku/Stringy, (*4)

This version builds on voku's work. The main aim was to make the management of the code base easier by splitting the mountain of methods that make up the Stringy class into traits., (*5)

This does mean we have bumped the minimum PHP version to 5.4+, (*6)

NOTE: There are also a few other changes, this is not an API compatible fork., (*7)

How to Install

Installation via composer is easy:, (*8)

composer require gears/string

Then import the Str class into your script:, (*9)

use Gears\String\Str;

OO and Chaining

The library offers OO method chaining, as seen below:, (*10)

echo Str::s('fòô     bàř')->removeWhitespace()->swapCase(); // 'FÒÔ BÀŘ'

Gears\String\Str has a __toString() method, which returns the current string when the object is used in a string context, ie: (string) Str::s('foo'), (*11)

Implemented Interfaces

Gears\String\Str implements the IteratorAggregate interface, meaning that foreach can be used with an instance of the class:, (*12)

``` php $str = Str::s('fòôbàř'); foreach ($str as $char) { echo $char; } // 'fòôbàř', (*13)


It implements the `Countable` interface, enabling the use of `count()` to retrieve the number of characters in the string: ``` php $str = Str::s('fòô'); count($str); // 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 Gears\String\Str 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., (*14)

``` php $str = Str::s('bàř'); echo $str[2]; // 'ř' echo $str[-2]; // 'à' isset($str[-4]); // false, (*15)

$str[3]; // OutOfBoundsException $str[2] = 'a'; // Exception ```, (*16)

The Methods

All methods are documented with PSR-5 docblocks that provide autocomplete hints to any decent IDE such as PHP Storm or Atom with atom-autocomplete-php., (*17)


Developed by Brad Jones - brad@bjc.id.au, (*18)

The Versions

18/04 2016

v1.0.0-RC3

1.0.0.0-RC3 https://github.com/phpgearbox/string

A collection of basic string manipulation functions.

  Sources   Download

MIT

The Requires

 

The Development Requires

manipulation string

14/04 2016

v1.0.0-RC2

1.0.0.0-RC2 https://github.com/phpgearbox/string

A collection of basic string manipulation functions.

  Sources   Download

MIT

The Requires

 

The Development Requires

manipulation string

13/04 2016

v1.0.0-RC1

1.0.0.0-RC1 https://github.com/phpgearbox/string

A collection of basic string manipulation functions.

  Sources   Download

MIT

The Requires

 

The Development Requires

manipulation string

05/02 2015

v0.6.0

0.6.0.0 https://github.com/phpgearbox/string

A collection of basic string manipulation functions.

  Sources   Download

MIT

The Requires

 

The Development Requires

manipulation string

02/12 2014

v0.5.2

0.5.2.0 https://github.com/phpgearbox/string

A collection of basic string manipulation functions.

  Sources   Download

MIT

The Requires

 

The Development Requires

manipulation string

27/10 2014

v0.5.1

0.5.1.0 https://github.com/phpgearbox/string

A collection of basic string manipulation functions.

  Sources   Download

MIT

The Requires

 

The Development Requires

manipulation string

23/09 2014

v0.5.0

0.5.0.0 https://github.com/phpgearbox/string

A collection of basic string manipulation functions.

  Sources   Download

MIT

The Requires

 

The Development Requires

manipulation string

22/09 2014

v0.4.0

0.4.0.0 https://github.com/phpgearbox/string

A collection of basic string manipulation functions.

  Sources   Download

MIT

The Requires

 

The Development Requires

manipulation string

08/09 2014

v0.3

0.3.0.0 https://github.com/phpgearbox/string

A collection of basic string manipulation functions.

  Sources   Download

MIT

The Requires

  • php >=5.3

 

manipulation string

19/07 2013

v0.2

0.2.0.0 https://github.com/phpgearbox/string

A collection of basic string manipulation functions.

  Sources   Download

MIT

The Requires

  • php >=5.3

 

manipulation string

19/07 2013

v0.1

0.1.0.0 https://github.com/phpgearbox/string

A collection of basic string manipulation functions.

  Sources   Download

MIT

The Requires

  • php >=5.3

 

manipulation string