Description
Do you remember PHP's string functions? If not, just wrap you text with Text! It will save a minute on your coding.
Text alternatives and similar libraries
Based on the "Strings" category.
Alternatively, view Text alternatives based on common mentions on social networks and blogs.
-
Mobile-Detect
Mobile_Detect is a lightweight PHP class for detecting mobile devices (including tablets). It uses the User-Agent string combined with specific HTTP headers to detect the mobile environment. -
SQL Formatter
A lightweight php class for formatting sql statements. Handles automatic indentation and syntax highlighting. -
Device Detector
The Universal Device Detection library will parse any User Agent and detect the browser, operating system, device used (desktop, tablet, mobile, tv, cars, console, etc.), brand and model. -
Slugify
Converts a string to a slug. Includes integrations for Symfony, Silex, Laravel, Zend Framework 2, Twig, Nette and Latte. -
Jieba-PHP
"結巴"中文分詞:做最好的 PHP 中文分詞、中文斷詞組件。 / "Jieba" (Chinese for "to stutter") Chinese text segmentation: built to be the best PHP Chinese word segmentation module. -
URLify
A fast PHP slug generator and transliteration library that converts non-ascii characters for use in URLs. -
Google Translate For Free
Library for free use Google Translator. With attempts connecting on failure and array support. -
Case converter
Convert strings between 13 naming conventions: Snake case, Camel case, Kebab case, Pascal case, Ada case, Train case, Cobol case, Macro case, Upper case, Lower case, Title case, Sentence case and Dot notation. -
Russian metaphone phonetic algorithm implementation for PHP
Russian metaphone algorithm implementation
InfluxDB - Purpose built for real-time analytics at any scale.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Text or a related project?
Popular Comparisons
README
Text - Simple 1 Class Text Manipulation Library
Do you remember PHP's string functions?
If not, just wrap you text with Text
! It will save a minute on your coding.
Text
is extracted from kzykhys/Ciconia. this is used for markdown processing.
Installation
Modify your composer.json and run php composer.phar update
{
"require": {
"kzykhys/text":"~1.0.0"
}
}
Requirements
PHP5.4+
Get Started
Text
acts like a string
<?php
use KzykHys\Text\Text;
$text = new Text('Lorem Ipsum');
echo $text;
// Lorem Ipsum
Text
can also be called statically
<?php
use KzykHys\Text\Text;
$text = Text::create('Lorem Ipsum');
echo $text;
// Lorem Ipsum
Manipulation methods are chainable:
$text = new Text('foo');
$text
->append('bar') // foobar
->prepend('baz') // bazfoobar
->wrap('-') // -bazfoobar-
->upper() // -BAZFOOBAR-
->lower() // -bazfoobar-
->trim('-') // bazfoobar
->rtrim('r') // bazfooba
->ltrim('b') // azfooba
;
Special note for replace()
$text = new Text('FooBarBaz');
$text->replace('/Foo(Bar)(Baz)/', function (Text $whole, Text $bar, Text $baz) {
return $bar->upper()->append($baz->lower());
});
echo $text;
// BARbaz
If the second argument is callable, callback takes at least one parameter. The whole match being first, and matched subpatterns.
All parameters are Text
instance.
API
Manipulation (Chainable)
Method | Description |
---|---|
create($text) | Create a new Text instance. |
append($text) | Append the string. |
prepend($text) | Prepend the string. |
wrap($start, [$end]) | Surround text with given string. |
lower() | Make a string lowercase. |
upper() | Make a string uppercase. |
trim([$charList]) | Strip whitespace (or other characters) from the beginning and end of a string. |
rtrim([$charList]) | Strip whitespace (or other characters) from the end of a string. |
ltrim([$charList]) | Strip whitespace (or other characters) from the beginning of a string. |
escapeHtml([$option]) | Convert special characters to HTML entities. |
replace($pattern, $replacement) | Perform a regular expression search and replace. If $replacement is the callable, a callback that will be called and passed an array of matched elements in the subject string. |
replaceString($search, $replace) | Replace all occurrences of the search string with the replacement string. |
indent([$spaces]) | Add one level of line-leading spaces. |
outdent([$spaces]) | Remove one level of line-leading tabs or spaces. |
detab([$spaces]) | Convert tabs to spaces. |
eachLine($callback) | Apply a user function to every line of the string. |
Test
Method | Description |
---|---|
isEmpty() | Determine whether a variable is empty |
isNumeric() | Finds whether a variable is a number or a numeric string |
match($pattern, [&$matches]) | Perform a regular expression match |
Miscellaneous
Method | Description |
---|---|
split($pattern, [$flags]) | Split string by a regular expression |
lines([$pattern]) | Split string by a line break |
chars() | Convert a string to an array |
length() | Gets the length of a string |
countLines() | Gets the number of lines |
indexOf($needle, [$offset]) | Find the position of the first occurrence of a substring in a string |
Filesystem
Method | Description |
---|---|
save($path) | Write a string to a file |
License
The MIT License
Author
Kazuyuki Hayashi (@kzykhys)
*Note that all licence references and agreements mentioned in the Text README section above
are relevant to that project's source code only.