jonasrudolph / php-component-stringutility
This package is abandoned and no longer maintained.
No replacement package was suggested.
1.2.1
2017-03-02 07:44 UTC
Requires
- php: >=5.5
Requires (Dev)
- phpunit/phpunit: 5.3.*
This package is not auto-updated.
Last update: 2023-11-11 14:06:08 UTC
README
php-component-stringutility
- Well tested functions on strings:
use JonasRudolph\PHPComponents\StringUtility\Base\StringUtilityInterface; use JonasRudolph\PHPComponents\StringUtility\Implementation\StringUtility; /** @var StringUtilityInterface */ $stringUtility = new StringUtility(); $stringUtility->contains('mySecr3t', 'cr3') === true $stringUtility->startsWith('https://my-domain.com', 'https') === true $stringUtility->endsWith('www.my-domain.com/img/logo.svg', '.svg') === true; $stringUtility->removePrefix('http://www.my-domain.com', 'http://') === 'www.my-domain.com' $stringUtility->removeSuffix('my-domain.com', '.com') === 'my-domain' $stringUtility->removeWhitespace("Any String\tWith\nWhitespace\r.\0") === 'AnyStringWithWitespace.' $stringUtility->substringAfter('www.my-domain.com/index.php', '.com/') === 'index.php' $stringUtility->substringBefore('www.my-domain.com/user?id=1&token=xyz', '?') === 'www.my-domain.com/user' $stringUtility->substringBetween('there is no foo without a bar', 'no ', ' without') === 'foo' $stringUtility->split('user@my-domain.com:secret', ':') === ['user@my-domain.com', 'secret']
Consistent rules used in all functions
-
When a function searches for a needle anywhere in a string and the string contains the needle more than once - then, the function will use the first occurence of the needle in the string for further computations
That means:$stringUtility->substringAfter('abefbg', 'b') === 'efbg' $stringUtility->substringBefore('abefbg', 'b') === 'a' $stringUtility->split('user@my-domain.com:secret', ':') === ['user@my-domain.com', 'secret']
One exception is the substringBetween function which will search for the first $untilBefore-string after the occurence of the first $startAfter-string
$stringUtility->substringBetween('abefbg', 'b', 'b') === 'ef' $stringUtility->substringBetween('abefbg', 'e', 'b') === 'f' $stringUtility->substringBetween('abcdefg', 'c', 'b') === 'defg'
-
Every character of a a string is surrounded by the empty string ('') infinitly times
That means:$stringUtility->contains($myString, '') === true $stringUtility->startsWith($myString, '') === true $stringUtility->endsWith($myString, '') === true; $stringUtility->substringAfter($myString, '') === $myString $stringUtility->substringBefore($myString, '') === '' $stringUtility->substringBetween('abcd', '', 'b') === 'a' $stringUtility->substringBetween($myString, $x, '') === '' $stringUtility->split($myString, '') === ['', $myString]