Strings
Introduction
Laravel includes a variety of functions for manipulating string values. Many of these functions are used by the framework itself; however, you are free to use them in your own applications if you find them convenient.
Available Methods
Strings
__ class_basename e preg_replace_array Str::after Str::afterLast Str::apa Str::ascii Str::before Str::beforeLast Str::between Str::betweenFirst Str::camel Str::charAt Str::contains Str::containsAll Str::endsWith Str::excerpt Str::finish Str::headline Str::inlineMarkdown Str::is Str::isAscii Str::isJson Str::isUlid Str::isUrl Str::isUuid Str::kebab Str::lcfirst Str::length Str::limit Str::lower Str::markdown Str::mask Str::orderedUuid Str::padBoth Str::padLeft Str::padRight Str::password Str::plural Str::pluralStudly Str::position Str::random Str::remove Str::repeat Str::replace Str::replaceArray Str::replaceFirst Str::replaceLast Str::replaceMatches Str::replaceStart Str::replaceEnd Str::reverse Str::singular Str::slug Str::snake Str::squish Str::start Str::startsWith Str::studly Str::substr Str::substrCount Str::substrReplace Str::swap Str::take Str::title Str::toBase64 Str::toHtmlString Str::ucfirst Str::ucsplit Str::upper Str::ulid Str::unwrap Str::uuid Str::wordCount Str::wordWrap Str::words Str::wrap str trans trans_choice
Fluent Strings
after afterLast apa append ascii basename before beforeLast between betweenFirst camel charAt classBasename contains containsAll dirname endsWith excerpt exactly explode finish headline inlineMarkdown is isAscii isEmpty isNotEmpty isJson isUlid isUrl isUuid kebab lcfirst length limit lower ltrim markdown mask match matchAll isMatch newLine padBoth padLeft padRight pipe plural position prepend remove repeat replace replaceArray replaceFirst replaceLast replaceMatches replaceStart replaceEnd rtrim scan singular slug snake split squish start startsWith stripTags studly substr substrReplace swap take tap test title toBase64 trim ucfirst ucsplit unwrap upper when whenContains whenContainsAll whenEmpty whenNotEmpty whenStartsWith whenEndsWith whenExactly whenNotExactly whenIs whenIsAscii whenIsUlid whenIsUuid whenTest wordCount words
Strings
__()
The __
function translates the given translation string or translation key using your language files:
1echo __('Welcome to our application');23echo __('messages.welcome');
1echo __('Welcome to our application');23echo __('messages.welcome');
If the specified translation string or key does not exist, the __
function will return the given value. So, using the example above, the __
function would return messages.welcome
if that translation key does not exist.
class_basename()
The class_basename
function returns the class name of the given class with the class's namespace removed:
1$class = class_basename('Foo\Bar\Baz');23// Baz
1$class = class_basename('Foo\Bar\Baz');23// Baz
e()
The e
function runs PHP's htmlspecialchars
function with the double_encode
option set to true
by default:
1echo e('<html>foo</html>');23// <html>foo</html>
1echo e('<html>foo</html>');23// <html>foo</html>
preg_replace_array()
The preg_replace_array
function replaces a given pattern in the string sequentially using an array:
1$string = 'The event will take place between :start and :end';23$replaced = preg_replace_array('/:[a-z_]+/', ['8:30', '9:00'], $string);45// The event will take place between 8:30 and 9:00
1$string = 'The event will take place between :start and :end';23$replaced = preg_replace_array('/:[a-z_]+/', ['8:30', '9:00'], $string);45// The event will take place between 8:30 and 9:00
Str::after()
The Str::after
method returns everything after the given value in a string. The entire string will be returned if the value does not exist within the string:
1use Illuminate\Support\Str;23$slice = Str::after('This is my name', 'This is');45// ' my name'
1use Illuminate\Support\Str;23$slice = Str::after('This is my name', 'This is');45// ' my name'
Str::afterLast()
The Str::afterLast
method returns everything after the last occurrence of the given value in a string. The entire string will be returned if the value does not exist within the string:
1use Illuminate\Support\Str;23$slice = Str::afterLast('App\Http\Controllers\Controller', '\\');45// 'Controller'
1use Illuminate\Support\Str;23$slice = Str::afterLast('App\Http\Controllers\Controller', '\\');45// 'Controller'
Str::apa()
The Str::apa
method converts the given string to title case following the APA guidelines:
1use Illuminate\Support\Str;23$title = Str::apa('Creating A Project');45// 'Creating a Project'
1use Illuminate\Support\Str;23$title = Str::apa('Creating A Project');45// 'Creating a Project'
Str::ascii()
The Str::ascii
method will attempt to transliterate the string into an ASCII value:
1use Illuminate\Support\Str;23$slice = Str::ascii('û');45// 'u'
1use Illuminate\Support\Str;23$slice = Str::ascii('û');45// 'u'
Str::before()
The Str::before
method returns everything before the given value in a string:
1use Illuminate\Support\Str;23$slice = Str::before('This is my name', 'my name');45// 'This is '
1use Illuminate\Support\Str;23$slice = Str::before('This is my name', 'my name');45// 'This is '
Str::beforeLast()
The Str::beforeLast
method returns everything before the last occurrence of the given value in a string:
1use Illuminate\Support\Str;23$slice = Str::beforeLast('This is my name', 'is');45// 'This '
1use Illuminate\Support\Str;23$slice = Str::beforeLast('This is my name', 'is');45// 'This '
Str::between()
The Str::between
method returns the portion of a string between two values:
1use Illuminate\Support\Str;23$slice = Str::between('This is my name', 'This', 'name');45// ' is my '
1use Illuminate\Support\Str;23$slice = Str::between('This is my name', 'This', 'name');45// ' is my '
Str::betweenFirst()
The Str::betweenFirst
method returns the smallest possible portion of a string between two values:
1use Illuminate\Support\Str;23$slice = Str::betweenFirst('[a] bc [d]', '[', ']');45// 'a'
1use Illuminate\Support\Str;23$slice = Str::betweenFirst('[a] bc [d]', '[', ']');45// 'a'
Str::camel()
The Str::camel
method converts the given string to camelCase
:
1use Illuminate\Support\Str;23$converted = Str::camel('foo_bar');45// 'fooBar'
1use Illuminate\Support\Str;23$converted = Str::camel('foo_bar');45// 'fooBar'
Str::charAt()
The Str::charAt
method returns the character at the specified index. If the index is out of bounds, false
is returned:
1use Illuminate\Support\Str;23$character = Str::charAt('This is my name.', 6);45// 's'
1use Illuminate\Support\Str;23$character = Str::charAt('This is my name.', 6);45// 's'
Str::contains()
The Str::contains
method determines if the given string contains the given value. This method is case sensitive:
1use Illuminate\Support\Str;23$contains = Str::contains('This is my name', 'my');45// true
1use Illuminate\Support\Str;23$contains = Str::contains('This is my name', 'my');45// true
You may also pass an array of values to determine if the given string contains any of the values in the array:
1use Illuminate\Support\Str;23$contains = Str::contains('This is my name', ['my', 'foo']);45// true
1use Illuminate\Support\Str;23$contains = Str::contains('This is my name', ['my', 'foo']);45// true
Str::containsAll()
The Str::containsAll
method determines if the given string contains all of the values in a given array:
1use Illuminate\Support\Str;23$containsAll = Str::containsAll('This is my name', ['my', 'name']);45// true
1use Illuminate\Support\Str;23$containsAll = Str::containsAll('This is my name', ['my', 'name']);45// true
Str::endsWith()
The Str::endsWith
method determines if the given string ends with the given value:
1use Illuminate\Support\Str;23$result = Str::endsWith('This is my name', 'name');45// true
1use Illuminate\Support\Str;23$result = Str::endsWith('This is my name', 'name');45// true
You may also pass an array of values to determine if the given string ends with any of the values in the array:
1use Illuminate\Support\Str;23$result = Str::endsWith('This is my name', ['name', 'foo']);45// true67$result = Str::endsWith('This is my name', ['this', 'foo']);89// false
1use Illuminate\Support\Str;23$result = Str::endsWith('This is my name', ['name', 'foo']);45// true67$result = Str::endsWith('This is my name', ['this', 'foo']);89// false
Str::excerpt()
The Str::excerpt
method extracts an excerpt from a given string that matches the first instance of a phrase within that string:
1use Illuminate\Support\Str;23$excerpt = Str::excerpt('This is my name', 'my', [4 'radius' => 35]);67// '...is my na...'
1use Illuminate\Support\Str;23$excerpt = Str::excerpt('This is my name', 'my', [4 'radius' => 35]);67// '...is my na...'
The radius
option, which defaults to 100
, allows you to define the number of characters that should appear on each side of the truncated string.
In addition, you may use the omission
option to define the string that will be prepended and appended to the truncated string:
1use Illuminate\Support\Str;23$excerpt = Str::excerpt('This is my name', 'name', [4 'radius' => 3,5 'omission' => '(...) '6]);78// '(...) my name'
1use Illuminate\Support\Str;23$excerpt = Str::excerpt('This is my name', 'name', [4 'radius' => 3,5 'omission' => '(...) '6]);78// '(...) my name'
Str::finish()
The Str::finish
method adds a single instance of the given value to a string if it does not already end with that value:
1use Illuminate\Support\Str;23$adjusted = Str::finish('this/string', '/');45// this/string/67$adjusted = Str::finish('this/string/', '/');89// this/string/
1use Illuminate\Support\Str;23$adjusted = Str::finish('this/string', '/');45// this/string/67$adjusted = Str::finish('this/string/', '/');89// this/string/
Str::headline()
The Str::headline
method will convert strings delimited by casing, hyphens, or underscores into a space delimited string with each word's first letter capitalized:
1use Illuminate\Support\Str;23$headline = Str::headline('steve_jobs');45// Steve Jobs67$headline = Str::headline('EmailNotificationSent');89// Email Notification Sent
1use Illuminate\Support\Str;23$headline = Str::headline('steve_jobs');45// Steve Jobs67$headline = Str::headline('EmailNotificationSent');89// Email Notification Sent
Str::inlineMarkdown()
The Str::inlineMarkdown
method converts GitHub flavored Markdown into inline HTML using CommonMark. However, unlike the markdown
method, it does not wrap all generated HTML in a block-level element:
1use Illuminate\Support\Str;23$html = Str::inlineMarkdown('**Laravel**');45// <strong>Laravel</strong>
1use Illuminate\Support\Str;23$html = Str::inlineMarkdown('**Laravel**');45// <strong>Laravel</strong>
Markdown Security
By default, Markdown supports raw HTML, which will expose Cross-Site Scripting (XSS) vulnerabilities when used with raw user input. As per the CommonMark Security documentation, you may use the html_input
option to either escape or strip raw HTML, and the allow_unsafe_links
option to specify whether to allow unsafe links. If you need to allow some raw HTML, you should pass your compiled Markdown through an HTML Purifier:
1use Illuminate\Support\Str;23Str::inlineMarkdown('Inject: <script>alert("Hello XSS!");</script>', [4 'html_input' => 'strip',5 'allow_unsafe_links' => false,6]);78// Inject: alert("Hello XSS!");
1use Illuminate\Support\Str;23Str::inlineMarkdown('Inject: <script>alert("Hello XSS!");</script>', [4 'html_input' => 'strip',5 'allow_unsafe_links' => false,6]);78// Inject: alert("Hello XSS!");
Str::is()
The Str::is
method determines if a given string matches a given pattern. Asterisks may be used as wildcard values:
1use Illuminate\Support\Str;23$matches = Str::is('foo*', 'foobar');45// true67$matches = Str::is('baz*', 'foobar');89// false
1use Illuminate\Support\Str;23$matches = Str::is('foo*', 'foobar');45// true67$matches = Str::is('baz*', 'foobar');89// false
Str::isAscii()
The Str::isAscii
method determines if a given string is 7 bit ASCII:
1use Illuminate\Support\Str;23$isAscii = Str::isAscii('Taylor');45// true67$isAscii = Str::isAscii('ü');89// false
1use Illuminate\Support\Str;23$isAscii = Str::isAscii('Taylor');45// true67$isAscii = Str::isAscii('ü');89// false
Str::isJson()
The Str::isJson
method determines if the given string is valid JSON:
1use Illuminate\Support\Str;23$result = Str::isJson('[1,2,3]');45// true67$result = Str::isJson('{"first": "John", "last": "Doe"}');89// true1011$result = Str::isJson('{first: "John", last: "Doe"}');1213// false
1use Illuminate\Support\Str;23$result = Str::isJson('[1,2,3]');45// true67$result = Str::isJson('{"first": "John", "last": "Doe"}');89// true1011$result = Str::isJson('{first: "John", last: "Doe"}');1213// false
Str::isUrl()
The Str::isUrl
method determines if the given string is a valid URL:
1use Illuminate\Support\Str;23$isUrl = Str::isUrl('http://example.com');45// true67$isUrl = Str::isUrl('laravel');89// false
1use Illuminate\Support\Str;23$isUrl = Str::isUrl('http://example.com');45// true67$isUrl = Str::isUrl('laravel');89// false
The isUrl
method considers a wide range of protocols as valid. However, you may specify the protocols that should be considered valid by providing them to the isUrl
method:
1$isUrl = Str::isUrl('http://example.com', ['http', 'https']);
1$isUrl = Str::isUrl('http://example.com', ['http', 'https']);
Str::isUlid()
The Str::isUlid
method determines if the given string is a valid ULID:
1use Illuminate\Support\Str;23$isUlid = Str::isUlid('01gd6r360bp37zj17nxb55yv40');45// true67$isUlid = Str::isUlid('laravel');89// false
1use Illuminate\Support\Str;23$isUlid = Str::isUlid('01gd6r360bp37zj17nxb55yv40');45// true67$isUlid = Str::isUlid('laravel');89// false
Str::isUuid()
The Str::isUuid
method determines if the given string is a valid UUID:
1use Illuminate\Support\Str;23$isUuid = Str::isUuid('a0a2a2d2-0b87-4a18-83f2-2529882be2de');45// true67$isUuid = Str::isUuid('laravel');89// false
1use Illuminate\Support\Str;23$isUuid = Str::isUuid('a0a2a2d2-0b87-4a18-83f2-2529882be2de');45// true67$isUuid = Str::isUuid('laravel');89// false
Str::kebab()
The Str::kebab
method converts the given string to kebab-case
:
1use Illuminate\Support\Str;23$converted = Str::kebab('fooBar');45// foo-bar
1use Illuminate\Support\Str;23$converted = Str::kebab('fooBar');45// foo-bar
Str::lcfirst()
The Str::lcfirst
method returns the given string with the first character lowercased:
1use Illuminate\Support\Str;23$string = Str::lcfirst('Foo Bar');45// foo Bar
1use Illuminate\Support\Str;23$string = Str::lcfirst('Foo Bar');45// foo Bar
Str::length()
The Str::length
method returns the length of the given string:
1use Illuminate\Support\Str;23$length = Str::length('Laravel');45// 7
1use Illuminate\Support\Str;23$length = Str::length('Laravel');45// 7
Str::limit()
The Str::limit
method truncates the given string to the specified length:
1use Illuminate\Support\Str;23$truncated = Str::limit('The quick brown fox jumps over the lazy dog', 20);45// The quick brown fox...
1use Illuminate\Support\Str;23$truncated = Str::limit('The quick brown fox jumps over the lazy dog', 20);45// The quick brown fox...
You may pass a third argument to the method to change the string that will be appended to the end of the truncated string:
1use Illuminate\Support\Str;23$truncated = Str::limit('The quick brown fox jumps over the lazy dog', 20, ' (...)');45// The quick brown fox (...)
1use Illuminate\Support\Str;23$truncated = Str::limit('The quick brown fox jumps over the lazy dog', 20, ' (...)');45// The quick brown fox (...)
Str::lower()
The Str::lower
method converts the given string to lowercase:
1use Illuminate\Support\Str;23$converted = Str::lower('LARAVEL');45// laravel
1use Illuminate\Support\Str;23$converted = Str::lower('LARAVEL');45// laravel
Str::markdown()
The Str::markdown
method converts GitHub flavored Markdown into HTML using CommonMark:
1use Illuminate\Support\Str;23$html = Str::markdown('# Laravel');45// <h1>Laravel</h1>67$html = Str::markdown('# Taylor <b>Otwell</b>', [8 'html_input' => 'strip',9]);1011// <h1>Taylor Otwell</h1>
1use Illuminate\Support\Str;23$html = Str::markdown('# Laravel');45// <h1>Laravel</h1>67$html = Str::markdown('# Taylor <b>Otwell</b>', [8 'html_input' => 'strip',9]);1011// <h1>Taylor Otwell</h1>
Markdown Security
By default, Markdown supports raw HTML, which will expose Cross-Site Scripting (XSS) vulnerabilities when used with raw user input. As per the CommonMark Security documentation, you may use the html_input
option to either escape or strip raw HTML, and the allow_unsafe_links
option to specify whether to allow unsafe links. If you need to allow some raw HTML, you should pass your compiled Markdown through an HTML Purifier:
1use Illuminate\Support\Str;23Str::markdown('Inject: <script>alert("Hello XSS!");</script>', [4 'html_input' => 'strip',5 'allow_unsafe_links' => false,6]);78// <p>Inject: alert("Hello XSS!");</p>
1use Illuminate\Support\Str;23Str::markdown('Inject: <script>alert("Hello XSS!");</script>', [4 'html_input' => 'strip',5 'allow_unsafe_links' => false,6]);78// <p>Inject: alert("Hello XSS!");</p>
Str::mask()
The Str::mask
method masks a portion of a string with a repeated character, and may be used to obfuscate segments of strings such as email addresses and phone numbers:
1use Illuminate\Support\Str;245// tay***************
1use Illuminate\Support\Str;245// tay***************
If needed, you provide a negative number as the third argument to the mask
method, which will instruct the method to begin masking at the given distance from the end of the string:
23// tay***@example.com
23// tay***@example.com
Str::orderedUuid()
The Str::orderedUuid
method generates a "timestamp first" UUID that may be efficiently stored in an indexed database column. Each UUID that is generated using this method will be sorted after UUIDs previously generated using the method:
1use Illuminate\Support\Str;23return (string) Str::orderedUuid();
1use Illuminate\Support\Str;23return (string) Str::orderedUuid();
Str::padBoth()
The Str::padBoth
method wraps PHP's str_pad
function, padding both sides of a string with another string until the final string reaches a desired length:
1use Illuminate\Support\Str;23$padded = Str::padBoth('James', 10, '_');45// '__James___'67$padded = Str::padBoth('James', 10);89// ' James '
1use Illuminate\Support\Str;23$padded = Str::padBoth('James', 10, '_');45// '__James___'67$padded = Str::padBoth('James', 10);89// ' James '
Str::padLeft()
The Str::padLeft
method wraps PHP's str_pad
function, padding the left side of a string with another string until the final string reaches a desired length:
1use Illuminate\Support\Str;23$padded = Str::padLeft('James', 10, '-=');45// '-=-=-James'67$padded = Str::padLeft('James', 10);89// ' James'
1use Illuminate\Support\Str;23$padded = Str::padLeft('James', 10, '-=');45// '-=-=-James'67$padded = Str::padLeft('James', 10);89// ' James'
Str::padRight()
The Str::padRight
method wraps PHP's str_pad
function, padding the right side of a string with another string until the final string reaches a desired length:
1use Illuminate\Support\Str;23$padded = Str::padRight('James', 10, '-');45// 'James-----'67$padded = Str::padRight('James', 10);89// 'James '
1use Illuminate\Support\Str;23$padded = Str::padRight('James', 10, '-');45// 'James-----'67$padded = Str::padRight('James', 10);89// 'James '
Str::password()
The Str::password
method may be used to generate a secure, random password of a given length. The password will consist of a combination of letters, numbers, symbols, and spaces. By default, passwords are 32 characters long:
1use Illuminate\Support\Str;23$password = Str::password();45// 'EbJo2vE-AS:U,$%_gkrV4n,q~1xy/-_4'67$password = Str::password(12);89// 'qwuar>#V|i]N'
1use Illuminate\Support\Str;23$password = Str::password();45// 'EbJo2vE-AS:U,$%_gkrV4n,q~1xy/-_4'67$password = Str::password(12);89// 'qwuar>#V|i]N'
Str::plural()
The Str::plural
method converts a singular word string to its plural form. This function supports any of the languages support by Laravel's pluralizer:
1use Illuminate\Support\Str;23$plural = Str::plural('car');45// cars67$plural = Str::plural('child');89// children
1use Illuminate\Support\Str;23$plural = Str::plural('car');45// cars67$plural = Str::plural('child');89// children
You may provide an integer as a second argument to the function to retrieve the singular or plural form of the string:
1use Illuminate\Support\Str;23$plural = Str::plural('child', 2);45// children67$singular = Str::plural('child', 1);89// child
1use Illuminate\Support\Str;23$plural = Str::plural('child', 2);45// children67$singular = Str::plural('child', 1);89// child
Str::pluralStudly()
The Str::pluralStudly
method converts a singular word string formatted in studly caps case to its plural form. This function supports any of the languages support by Laravel's pluralizer:
1use Illuminate\Support\Str;23$plural = Str::pluralStudly('VerifiedHuman');45// VerifiedHumans67$plural = Str::pluralStudly('UserFeedback');89// UserFeedback
1use Illuminate\Support\Str;23$plural = Str::pluralStudly('VerifiedHuman');45// VerifiedHumans67$plural = Str::pluralStudly('UserFeedback');89// UserFeedback
You may provide an integer as a second argument to the function to retrieve the singular or plural form of the string:
1use Illuminate\Support\Str;23$plural = Str::pluralStudly('VerifiedHuman', 2);45// VerifiedHumans67$singular = Str::pluralStudly('VerifiedHuman', 1);89// VerifiedHuman
1use Illuminate\Support\Str;23$plural = Str::pluralStudly('VerifiedHuman', 2);45// VerifiedHumans67$singular = Str::pluralStudly('VerifiedHuman', 1);89// VerifiedHuman
Str::position()
The Str::position
method returns the position of the first occurrence of a substring in a string. If the substring does not exist in the given string, false
is returned:
1use Illuminate\Support\Str;23$position = Str::position('Hello, World!', 'Hello');45// 067$position = Str::position('Hello, World!', 'W');89// 7
1use Illuminate\Support\Str;23$position = Str::position('Hello, World!', 'Hello');45// 067$position = Str::position('Hello, World!', 'W');89// 7
Str::random()
The Str::random
method generates a random string of the specified length. This function uses PHP's random_bytes
function:
1use Illuminate\Support\Str;23$random = Str::random(40);
1use Illuminate\Support\Str;23$random = Str::random(40);
During testing, it may be useful to "fake" the value that is returned by the Str::random
method. To accomplish this, you may use the createRandomStringsUsing
method:
1Str::createRandomStringsUsing(function () {2 return 'fake-random-string';3});
1Str::createRandomStringsUsing(function () {2 return 'fake-random-string';3});
To instruct the random
method to return to generating random strings normally, you may invoke the createRandomStringsNormally
method:
1Str::createRandomStringsNormally();
1Str::createRandomStringsNormally();
Str::remove()
The Str::remove
method removes the given value or array of values from the string:
1use Illuminate\Support\Str;23$string = 'Peter Piper picked a peck of pickled peppers.';45$removed = Str::remove('e', $string);67// Ptr Pipr pickd a pck of pickld ppprs.
1use Illuminate\Support\Str;23$string = 'Peter Piper picked a peck of pickled peppers.';45$removed = Str::remove('e', $string);67// Ptr Pipr pickd a pck of pickld ppprs.
You may also pass false
as a third argument to the remove
method to ignore case when removing strings.
Str::repeat()
The Str::repeat
method repeats the given string:
1use Illuminate\Support\Str;23$string = 'a';45$repeat = Str::repeat($string, 5);67// aaaaa
1use Illuminate\Support\Str;23$string = 'a';45$repeat = Str::repeat($string, 5);67// aaaaa
Str::replace()
The Str::replace
method replaces a given string within the string:
1use Illuminate\Support\Str;23$string = 'Laravel 8.x';45$replaced = Str::replace('8.x', '9.x', $string);67// Laravel 9.x
1use Illuminate\Support\Str;23$string = 'Laravel 8.x';45$replaced = Str::replace('8.x', '9.x', $string);67// Laravel 9.x
The replace
method also accepts a caseSensitive
argument. By default, the replace
method is case sensitive:
1Str::replace('Framework', 'Laravel', caseSensitive: false);
1Str::replace('Framework', 'Laravel', caseSensitive: false);
Str::replaceArray()
The Str::replaceArray
method replaces a given value in the string sequentially using an array:
1use Illuminate\Support\Str;23$string = 'The event will take place between ? and ?';45$replaced = Str::replaceArray('?', ['8:30', '9:00'], $string);67// The event will take place between 8:30 and 9:00
1use Illuminate\Support\Str;23$string = 'The event will take place between ? and ?';45$replaced = Str::replaceArray('?', ['8:30', '9:00'], $string);67// The event will take place between 8:30 and 9:00
Str::replaceFirst()
The Str::replaceFirst
method replaces the first occurrence of a given value in a string:
1use Illuminate\Support\Str;23$replaced = Str::replaceFirst('the', 'a', 'the quick brown fox jumps over the lazy dog');45// a quick brown fox jumps over the lazy dog
1use Illuminate\Support\Str;23$replaced = Str::replaceFirst('the', 'a', 'the quick brown fox jumps over the lazy dog');45// a quick brown fox jumps over the lazy dog
Str::replaceLast()
The Str::replaceLast
method replaces the last occurrence of a given value in a string:
1use Illuminate\Support\Str;23$replaced = Str::replaceLast('the', 'a', 'the quick brown fox jumps over the lazy dog');45// the quick brown fox jumps over a lazy dog
1use Illuminate\Support\Str;23$replaced = Str::replaceLast('the', 'a', 'the quick brown fox jumps over the lazy dog');45// the quick brown fox jumps over a lazy dog
Str::replaceMatches()
The Str::replaceMatches
method replaces all portions of a string matching a pattern with the given replacement string:
1use Illuminate\Support\Str;23$replaced = Str::replaceMatches(4 pattern: '/[^A-Za-z0-9]++/',5 replace: '',6 subject: '(+1) 501-555-1000'7)89// '15015551000'
1use Illuminate\Support\Str;23$replaced = Str::replaceMatches(4 pattern: '/[^A-Za-z0-9]++/',5 replace: '',6 subject: '(+1) 501-555-1000'7)89// '15015551000'
The replaceMatches
method also accepts a closure that will be invoked with each portion of the string matching the given pattern, allowing you to perform the replacement logic within the closure and return the replaced value:
1use Illuminate\Support\Str;23$replaced = Str::replaceMatches('/\d/', function (array $matches) {4 return '['.$matches[0].']';5}, '123');67// '[1][2][3]'
1use Illuminate\Support\Str;23$replaced = Str::replaceMatches('/\d/', function (array $matches) {4 return '['.$matches[0].']';5}, '123');67// '[1][2][3]'
Str::replaceStart()
The Str::replaceStart
method replaces the first occurrence of the given value only if the value appears at the start of the string:
1use Illuminate\Support\Str;23$replaced = Str::replaceStart('Hello', 'Laravel', 'Hello World');45// Laravel World67$replaced = Str::replaceStart('World', 'Laravel', 'Hello World');89// Hello World
1use Illuminate\Support\Str;23$replaced = Str::replaceStart('Hello', 'Laravel', 'Hello World');45// Laravel World67$replaced = Str::replaceStart('World', 'Laravel', 'Hello World');89// Hello World
Str::replaceEnd()
The Str::replaceEnd
method replaces the last occurrence of the given value only if the value appears at the end of the string:
1use Illuminate\Support\Str;23$replaced = Str::replaceEnd('World', 'Laravel', 'Hello World');45// Hello Laravel67$replaced = Str::replaceEnd('Hello', 'Laravel', 'Hello World');89// Hello World
1use Illuminate\Support\Str;23$replaced = Str::replaceEnd('World', 'Laravel', 'Hello World');45// Hello Laravel67$replaced = Str::replaceEnd('Hello', 'Laravel', 'Hello World');89// Hello World
Str::reverse()
The Str::reverse
method reverses the given string:
1use Illuminate\Support\Str;23$reversed = Str::reverse('Hello World');45// dlroW olleH
1use Illuminate\Support\Str;23$reversed = Str::reverse('Hello World');45// dlroW olleH
Str::singular()
The Str::singular
method converts a string to its singular form. This function supports any of the languages support by Laravel's pluralizer:
1use Illuminate\Support\Str;23$singular = Str::singular('cars');45// car67$singular = Str::singular('children');89// child
1use Illuminate\Support\Str;23$singular = Str::singular('cars');45// car67$singular = Str::singular('children');89// child
Str::slug()
The Str::slug
method generates a URL friendly "slug" from the given string:
1use Illuminate\Support\Str;23$slug = Str::slug('Laravel 5 Framework', '-');45// laravel-5-framework
1use Illuminate\Support\Str;23$slug = Str::slug('Laravel 5 Framework', '-');45// laravel-5-framework
Str::snake()
The Str::snake
method converts the given string to snake_case
:
1use Illuminate\Support\Str;23$converted = Str::snake('fooBar');45// foo_bar67$converted = Str::snake('fooBar', '-');89// foo-bar
1use Illuminate\Support\Str;23$converted = Str::snake('fooBar');45// foo_bar67$converted = Str::snake('fooBar', '-');89// foo-bar
Str::squish()
The Str::squish
method removes all extraneous white space from a string, including extraneous white space between words:
1use Illuminate\Support\Str;23$string = Str::squish(' laravel framework ');45// laravel framework
1use Illuminate\Support\Str;23$string = Str::squish(' laravel framework ');45// laravel framework
Str::start()
The Str::start
method adds a single instance of the given value to a string if it does not already start with that value:
1use Illuminate\Support\Str;23$adjusted = Str::start('this/string', '/');45// /this/string67$adjusted = Str::start('/this/string', '/');89// /this/string
1use Illuminate\Support\Str;23$adjusted = Str::start('this/string', '/');45// /this/string67$adjusted = Str::start('/this/string', '/');89// /this/string
Str::startsWith()
The Str::startsWith
method determines if the given string begins with the given value:
1use Illuminate\Support\Str;23$result = Str::startsWith('This is my name', 'This');45// true
1use Illuminate\Support\Str;23$result = Str::startsWith('This is my name', 'This');45// true
If an array of possible values is passed, the startsWith
method will return true
if the string begins with any of the given values:
1$result = Str::startsWith('This is my name', ['This', 'That', 'There']);23// true
1$result = Str::startsWith('This is my name', ['This', 'That', 'There']);23// true
Str::studly()
The Str::studly
method converts the given string to StudlyCase
:
1use Illuminate\Support\Str;23$converted = Str::studly('foo_bar');45// FooBar
1use Illuminate\Support\Str;23$converted = Str::studly('foo_bar');45// FooBar
Str::substr()
The Str::substr
method returns the portion of string specified by the start and length parameters:
1use Illuminate\Support\Str;23$converted = Str::substr('The Laravel Framework', 4, 7);45// Laravel
1use Illuminate\Support\Str;23$converted = Str::substr('The Laravel Framework', 4, 7);45// Laravel
Str::substrCount()
The Str::substrCount
method returns the number of occurrences of a given value in the given string:
1use Illuminate\Support\Str;23$count = Str::substrCount('If you like ice cream, you will like snow cones.', 'like');45// 2
1use Illuminate\Support\Str;23$count = Str::substrCount('If you like ice cream, you will like snow cones.', 'like');45// 2
Str::substrReplace()
The Str::substrReplace
method replaces text within a portion of a string, starting at the position specified by the third argument and replacing the number of characters specified by the fourth argument. Passing 0
to the method's fourth argument will insert the string at the specified position without replacing any of the existing characters in the string:
1use Illuminate\Support\Str;23$result = Str::substrReplace('1300', ':', 2);4// 13:56$result = Str::substrReplace('1300', ':', 2, 0);7// 13:00
1use Illuminate\Support\Str;23$result = Str::substrReplace('1300', ':', 2);4// 13:56$result = Str::substrReplace('1300', ':', 2, 0);7// 13:00
Str::swap()
The Str::swap
method replaces multiple values in the given string using PHP's strtr
function:
1use Illuminate\Support\Str;23$string = Str::swap([4 'Tacos' => 'Burritos',5 'great' => 'fantastic',6], 'Tacos are great!');78// Burritos are fantastic!
1use Illuminate\Support\Str;23$string = Str::swap([4 'Tacos' => 'Burritos',5 'great' => 'fantastic',6], 'Tacos are great!');78// Burritos are fantastic!
Str::take()
The Str::take
method returns a specified number of characters from the beginning of a string:
1use Illuminate\Support\Str;23$taken = Str::take('Build something amazing!', 5);45// Build
1use Illuminate\Support\Str;23$taken = Str::take('Build something amazing!', 5);45// Build
Str::title()
The Str::title
method converts the given string to Title Case
:
1use Illuminate\Support\Str;23$converted = Str::title('a nice title uses the correct case');45// A Nice Title Uses The Correct Case
1use Illuminate\Support\Str;23$converted = Str::title('a nice title uses the correct case');45// A Nice Title Uses The Correct Case
Str::toBase64()
The Str::toBase64
method converts the given string to Base64:
1use Illuminate\Support\Str;23$base64 = Str::toBase64('Laravel');45// TGFyYXZlbA==
1use Illuminate\Support\Str;23$base64 = Str::toBase64('Laravel');45// TGFyYXZlbA==
Str::toHtmlString()
The Str::toHtmlString
method converts the string instance to an instance of Illuminate\Support\HtmlString
, which may be displayed in Blade templates:
1use Illuminate\Support\Str;23$htmlString = Str::of('Nuno Maduro')->toHtmlString();
1use Illuminate\Support\Str;23$htmlString = Str::of('Nuno Maduro')->toHtmlString();
Str::ucfirst()
The Str::ucfirst
method returns the given string with the first character capitalized:
1use Illuminate\Support\Str;23$string = Str::ucfirst('foo bar');45// Foo bar
1use Illuminate\Support\Str;23$string = Str::ucfirst('foo bar');45// Foo bar
Str::ucsplit()
The Str::ucsplit
method splits the given string into an array by uppercase characters:
1use Illuminate\Support\Str;23$segments = Str::ucsplit('FooBar');45// [0 => 'Foo', 1 => 'Bar']
1use Illuminate\Support\Str;23$segments = Str::ucsplit('FooBar');45// [0 => 'Foo', 1 => 'Bar']
Str::upper()
The Str::upper
method converts the given string to uppercase:
1use Illuminate\Support\Str;23$string = Str::upper('laravel');45// LARAVEL
1use Illuminate\Support\Str;23$string = Str::upper('laravel');45// LARAVEL
Str::ulid()
The Str::ulid
method generates a ULID, which is a compact, time-ordered unique identifier:
1use Illuminate\Support\Str;23return (string) Str::ulid();45// 01gd6r360bp37zj17nxb55yv40
1use Illuminate\Support\Str;23return (string) Str::ulid();45// 01gd6r360bp37zj17nxb55yv40
If you would like to retrieve a Illuminate\Support\Carbon
date instance representing the date and time that a given ULID was created, you may use the createFromId
method provided by Laravel's Carbon integration:
1use Illuminate\Support\Carbon;2use Illuminate\Support\Str;34$date = Carbon::createFromId((string) Str::ulid());
1use Illuminate\Support\Carbon;2use Illuminate\Support\Str;34$date = Carbon::createFromId((string) Str::ulid());
During testing, it may be useful to "fake" the value that is returned by the Str::ulid
method. To accomplish this, you may use the createUlidsUsing
method:
1use Symfony\Component\Uid\Ulid;23Str::createUlidsUsing(function () {4 return new Ulid('01HRDBNHHCKNW2AK4Z29SN82T9');5});
1use Symfony\Component\Uid\Ulid;23Str::createUlidsUsing(function () {4 return new Ulid('01HRDBNHHCKNW2AK4Z29SN82T9');5});
To instruct the ulid
method to return to generating ULIDs normally, you may invoke the createUlidsNormally
method:
1Str::createUlidsNormally();
1Str::createUlidsNormally();
Str::unwrap()
The Str::unwrap
method removes the specified strings from the beginning and end of a given string:
1use Illuminate\Support\Str;23Str::unwrap('-Laravel-', '-');45// Laravel67Str::unwrap('{framework: "Laravel"}', '{', '}');89// framework: "Laravel"
1use Illuminate\Support\Str;23Str::unwrap('-Laravel-', '-');45// Laravel67Str::unwrap('{framework: "Laravel"}', '{', '}');89// framework: "Laravel"
Str::uuid()
The Str::uuid
method generates a UUID (version 4):
1use Illuminate\Support\Str;23return (string) Str::uuid();
1use Illuminate\Support\Str;23return (string) Str::uuid();
During testing, it may be useful to "fake" the value that is returned by the Str::uuid
method. To accomplish this, you may use the createUuidsUsing
method:
1use Ramsey\Uuid\Uuid;23Str::createUuidsUsing(function () {4 return Uuid::fromString('eadbfeac-5258-45c2-bab7-ccb9b5ef74f9');5});
1use Ramsey\Uuid\Uuid;23Str::createUuidsUsing(function () {4 return Uuid::fromString('eadbfeac-5258-45c2-bab7-ccb9b5ef74f9');5});
To instruct the uuid
method to return to generating UUIDs normally, you may invoke the createUuidsNormally
method:
1Str::createUuidsNormally();
1Str::createUuidsNormally();
Str::wordCount()
The Str::wordCount
method returns the number of words that a string contains:
1use Illuminate\Support\Str;23Str::wordCount('Hello, world!'); // 2
1use Illuminate\Support\Str;23Str::wordCount('Hello, world!'); // 2
Str::wordWrap()
The Str::wordWrap
method wraps a string to a given number of characters:
1use Illuminate\Support\Str;23$text = "The quick brown fox jumped over the lazy dog."45Str::wordWrap($text, characters: 20, break: "<br />\n");67/*8The quick brown fox<br />9jumped over the lazy<br />10dog.11*/
1use Illuminate\Support\Str;23$text = "The quick brown fox jumped over the lazy dog."45Str::wordWrap($text, characters: 20, break: "<br />\n");67/*8The quick brown fox<br />9jumped over the lazy<br />10dog.11*/
Str::words()
The Str::words
method limits the number of words in a string. An additional string may be passed to this method via its third argument to specify which string should be appended to the end of the truncated string:
1use Illuminate\Support\Str;23return Str::words('Perfectly balanced, as all things should be.', 3, ' >>>');45// Perfectly balanced, as >>>
1use Illuminate\Support\Str;23return Str::words('Perfectly balanced, as all things should be.', 3, ' >>>');45// Perfectly balanced, as >>>
Str::wrap()
The Str::wrap
method wraps the given string with an additional string or pair of strings:
1use Illuminate\Support\Str;23Str::wrap('Laravel', '"');45// "Laravel"67Str::wrap('is', before: 'This ', after: ' Laravel!');89// This is Laravel!
1use Illuminate\Support\Str;23Str::wrap('Laravel', '"');45// "Laravel"67Str::wrap('is', before: 'This ', after: ' Laravel!');89// This is Laravel!
str()
The str
function returns a new Illuminate\Support\Stringable
instance of the given string. This function is equivalent to the Str::of
method:
1$string = str('Taylor')->append(' Otwell');23// 'Taylor Otwell'
1$string = str('Taylor')->append(' Otwell');23// 'Taylor Otwell'
If no argument is provided to the str
function, the function returns an instance of Illuminate\Support\Str
:
1$snake = str()->snake('FooBar');23// 'foo_bar'
1$snake = str()->snake('FooBar');23// 'foo_bar'
trans()
The trans
function translates the given translation key using your language files:
1echo trans('messages.welcome');
1echo trans('messages.welcome');
If the specified translation key does not exist, the trans
function will return the given key. So, using the example above, the trans
function would return messages.welcome
if the translation key does not exist.
trans_choice()
The trans_choice
function translates the given translation key with inflection:
1echo trans_choice('messages.notifications', $unreadCount);
1echo trans_choice('messages.notifications', $unreadCount);
If the specified translation key does not exist, the trans_choice
function will return the given key. So, using the example above, the trans_choice
function would return messages.notifications
if the translation key does not exist.
Fluent Strings
Fluent strings provide a more fluent, object-oriented interface for working with string values, allowing you to chain multiple string operations together using a more readable syntax compared to traditional string operations.
after
The after
method returns everything after the given value in a string. The entire string will be returned if the value does not exist within the string:
1use Illuminate\Support\Str;23$slice = Str::of('This is my name')->after('This is');45// ' my name'
1use Illuminate\Support\Str;23$slice = Str::of('This is my name')->after('This is');45// ' my name'
afterLast
The afterLast
method returns everything after the last occurrence of the given value in a string. The entire string will be returned if the value does not exist within the string:
1use Illuminate\Support\Str;23$slice = Str::of('App\Http\Controllers\Controller')->afterLast('\\');45// 'Controller'
1use Illuminate\Support\Str;23$slice = Str::of('App\Http\Controllers\Controller')->afterLast('\\');45// 'Controller'
apa
The apa
method converts the given string to title case following the APA guidelines:
1use Illuminate\Support\Str;23$converted = Str::of('a nice title uses the correct case')->apa();45// A Nice Title Uses the Correct Case
1use Illuminate\Support\Str;23$converted = Str::of('a nice title uses the correct case')->apa();45// A Nice Title Uses the Correct Case
append
The append
method appends the given values to the string:
1use Illuminate\Support\Str;23$string = Str::of('Taylor')->append(' Otwell');45// 'Taylor Otwell'
1use Illuminate\Support\Str;23$string = Str::of('Taylor')->append(' Otwell');45// 'Taylor Otwell'
ascii
The ascii
method will attempt to transliterate the string into an ASCII value:
1use Illuminate\Support\Str;23$string = Str::of('ü')->ascii();45// 'u'
1use Illuminate\Support\Str;23$string = Str::of('ü')->ascii();45// 'u'
basename
The basename
method will return the trailing name component of the given string:
1use Illuminate\Support\Str;23$string = Str::of('/foo/bar/baz')->basename();45// 'baz'
1use Illuminate\Support\Str;23$string = Str::of('/foo/bar/baz')->basename();45// 'baz'
If needed, you may provide an "extension" that will be removed from the trailing component:
1use Illuminate\Support\Str;23$string = Str::of('/foo/bar/baz.jpg')->basename('.jpg');45// 'baz'
1use Illuminate\Support\Str;23$string = Str::of('/foo/bar/baz.jpg')->basename('.jpg');45// 'baz'
before
The before
method returns everything before the given value in a string:
1use Illuminate\Support\Str;23$slice = Str::of('This is my name')->before('my name');45// 'This is '
1use Illuminate\Support\Str;23$slice = Str::of('This is my name')->before('my name');45// 'This is '
beforeLast
The beforeLast
method returns everything before the last occurrence of the given value in a string:
1use Illuminate\Support\Str;23$slice = Str::of('This is my name')->beforeLast('is');45// 'This '
1use Illuminate\Support\Str;23$slice = Str::of('This is my name')->beforeLast('is');45// 'This '
between
The between
method returns the portion of a string between two values:
1use Illuminate\Support\Str;23$converted = Str::of('This is my name')->between('This', 'name');45// ' is my '
1use Illuminate\Support\Str;23$converted = Str::of('This is my name')->between('This', 'name');45// ' is my '
betweenFirst
The betweenFirst
method returns the smallest possible portion of a string between two values:
1use Illuminate\Support\Str;23$converted = Str::of('[a] bc [d]')->betweenFirst('[', ']');45// 'a'
1use Illuminate\Support\Str;23$converted = Str::of('[a] bc [d]')->betweenFirst('[', ']');45// 'a'
camel
The camel
method converts the given string to camelCase
:
1use Illuminate\Support\Str;23$converted = Str::of('foo_bar')->camel();45// 'fooBar'
1use Illuminate\Support\Str;23$converted = Str::of('foo_bar')->camel();45// 'fooBar'
charAt
The charAt
method returns the character at the specified index. If the index is out of bounds, false
is returned:
1use Illuminate\Support\Str;23$character = Str::of('This is my name.')->charAt(6);45// 's'
1use Illuminate\Support\Str;23$character = Str::of('This is my name.')->charAt(6);45// 's'
classBasename
The classBasename
method returns the class name of the given class with the class's namespace removed:
1use Illuminate\Support\Str;23$class = Str::of('Foo\Bar\Baz')->classBasename();45// 'Baz'
1use Illuminate\Support\Str;23$class = Str::of('Foo\Bar\Baz')->classBasename();45// 'Baz'
contains
The contains
method determines if the given string contains the given value. This method is case sensitive:
1use Illuminate\Support\Str;23$contains = Str::of('This is my name')->contains('my');45// true
1use Illuminate\Support\Str;23$contains = Str::of('This is my name')->contains('my');45// true
You may also pass an array of values to determine if the given string contains any of the values in the array:
1use Illuminate\Support\Str;23$contains = Str::of('This is my name')->contains(['my', 'foo']);45// true
1use Illuminate\Support\Str;23$contains = Str::of('This is my name')->contains(['my', 'foo']);45// true
containsAll
The containsAll
method determines if the given string contains all of the values in the given array:
1use Illuminate\Support\Str;23$containsAll = Str::of('This is my name')->containsAll(['my', 'name']);45// true
1use Illuminate\Support\Str;23$containsAll = Str::of('This is my name')->containsAll(['my', 'name']);45// true
dirname
The dirname
method returns the parent directory portion of the given string:
1use Illuminate\Support\Str;23$string = Str::of('/foo/bar/baz')->dirname();45// '/foo/bar'
1use Illuminate\Support\Str;23$string = Str::of('/foo/bar/baz')->dirname();45// '/foo/bar'
If necessary, you may specify how many directory levels you wish to trim from the string:
1use Illuminate\Support\Str;23$string = Str::of('/foo/bar/baz')->dirname(2);45// '/foo'
1use Illuminate\Support\Str;23$string = Str::of('/foo/bar/baz')->dirname(2);45// '/foo'
excerpt
The excerpt
method extracts an excerpt from the string that matches the first instance of a phrase within that string:
1use Illuminate\Support\Str;23$excerpt = Str::of('This is my name')->excerpt('my', [4 'radius' => 35]);67// '...is my na...'
1use Illuminate\Support\Str;23$excerpt = Str::of('This is my name')->excerpt('my', [4 'radius' => 35]);67// '...is my na...'
The radius
option, which defaults to 100
, allows you to define the number of characters that should appear on each side of the truncated string.
In addition, you may use the omission
option to change the string that will be prepended and appended to the truncated string:
1use Illuminate\Support\Str;23$excerpt = Str::of('This is my name')->excerpt('name', [4 'radius' => 3,5 'omission' => '(...) '6]);78// '(...) my name'
1use Illuminate\Support\Str;23$excerpt = Str::of('This is my name')->excerpt('name', [4 'radius' => 3,5 'omission' => '(...) '6]);78// '(...) my name'
endsWith
The endsWith
method determines if the given string ends with the given value:
1use Illuminate\Support\Str;23$result = Str::of('This is my name')->endsWith('name');45// true
1use Illuminate\Support\Str;23$result = Str::of('This is my name')->endsWith('name');45// true
You may also pass an array of values to determine if the given string ends with any of the values in the array:
1use Illuminate\Support\Str;23$result = Str::of('This is my name')->endsWith(['name', 'foo']);45// true67$result = Str::of('This is my name')->endsWith(['this', 'foo']);89// false
1use Illuminate\Support\Str;23$result = Str::of('This is my name')->endsWith(['name', 'foo']);45// true67$result = Str::of('This is my name')->endsWith(['this', 'foo']);89// false
exactly
The exactly
method determines if the given string is an exact match with another string:
1use Illuminate\Support\Str;23$result = Str::of('Laravel')->exactly('Laravel');45// true
1use Illuminate\Support\Str;23$result = Str::of('Laravel')->exactly('Laravel');45// true
explode
The explode
method splits the string by the given delimiter and returns a collection containing each section of the split string:
1use Illuminate\Support\Str;23$collection = Str::of('foo bar baz')->explode(' ');45// collect(['foo', 'bar', 'baz'])
1use Illuminate\Support\Str;23$collection = Str::of('foo bar baz')->explode(' ');45// collect(['foo', 'bar', 'baz'])
finish
The finish
method adds a single instance of the given value to a string if it does not already end with that value:
1use Illuminate\Support\Str;23$adjusted = Str::of('this/string')->finish('/');45// this/string/67$adjusted = Str::of('this/string/')->finish('/');89// this/string/
1use Illuminate\Support\Str;23$adjusted = Str::of('this/string')->finish('/');45// this/string/67$adjusted = Str::of('this/string/')->finish('/');89// this/string/
headline
The headline
method will convert strings delimited by casing, hyphens, or underscores into a space delimited string with each word's first letter capitalized:
1use Illuminate\Support\Str;23$headline = Str::of('taylor_otwell')->headline();45// Taylor Otwell67$headline = Str::of('EmailNotificationSent')->headline();89// Email Notification Sent
1use Illuminate\Support\Str;23$headline = Str::of('taylor_otwell')->headline();45// Taylor Otwell67$headline = Str::of('EmailNotificationSent')->headline();89// Email Notification Sent
inlineMarkdown
The inlineMarkdown
method converts GitHub flavored Markdown into inline HTML using CommonMark. However, unlike the markdown
method, it does not wrap all generated HTML in a block-level element:
1use Illuminate\Support\Str;23$html = Str::of('**Laravel**')->inlineMarkdown();45// <strong>Laravel</strong>
1use Illuminate\Support\Str;23$html = Str::of('**Laravel**')->inlineMarkdown();45// <strong>Laravel</strong>
Markdown Security
By default, Markdown supports raw HTML, which will expose Cross-Site Scripting (XSS) vulnerabilities when used with raw user input. As per the CommonMark Security documentation, you may use the html_input
option to either escape or strip raw HTML, and the allow_unsafe_links
option to specify whether to allow unsafe links. If you need to allow some raw HTML, you should pass your compiled Markdown through an HTML Purifier:
1use Illuminate\Support\Str;23Str::of('Inject: <script>alert("Hello XSS!");</script>')->inlineMarkdown([4 'html_input' => 'strip',5 'allow_unsafe_links' => false,6]);78// Inject: alert("Hello XSS!");
1use Illuminate\Support\Str;23Str::of('Inject: <script>alert("Hello XSS!");</script>')->inlineMarkdown([4 'html_input' => 'strip',5 'allow_unsafe_links' => false,6]);78// Inject: alert("Hello XSS!");
is
The is
method determines if a given string matches a given pattern. Asterisks may be used as wildcard values
1use Illuminate\Support\Str;23$matches = Str::of('foobar')->is('foo*');45// true67$matches = Str::of('foobar')->is('baz*');89// false
1use Illuminate\Support\Str;23$matches = Str::of('foobar')->is('foo*');45// true67$matches = Str::of('foobar')->is('baz*');89// false
isAscii
The isAscii
method determines if a given string is an ASCII string:
1use Illuminate\Support\Str;23$result = Str::of('Taylor')->isAscii();45// true67$result = Str::of('ü')->isAscii();89// false
1use Illuminate\Support\Str;23$result = Str::of('Taylor')->isAscii();45// true67$result = Str::of('ü')->isAscii();89// false
isEmpty
The isEmpty
method determines if the given string is empty:
1use Illuminate\Support\Str;23$result = Str::of(' ')->trim()->isEmpty();45// true67$result = Str::of('Laravel')->trim()->isEmpty();89// false
1use Illuminate\Support\Str;23$result = Str::of(' ')->trim()->isEmpty();45// true67$result = Str::of('Laravel')->trim()->isEmpty();89// false
isNotEmpty
The isNotEmpty
method determines if the given string is not empty:
1use Illuminate\Support\Str;23$result = Str::of(' ')->trim()->isNotEmpty();45// false67$result = Str::of('Laravel')->trim()->isNotEmpty();89// true
1use Illuminate\Support\Str;23$result = Str::of(' ')->trim()->isNotEmpty();45// false67$result = Str::of('Laravel')->trim()->isNotEmpty();89// true
isJson
The isJson
method determines if a given string is valid JSON:
1use Illuminate\Support\Str;23$result = Str::of('[1,2,3]')->isJson();45// true67$result = Str::of('{"first": "John", "last": "Doe"}')->isJson();89// true1011$result = Str::of('{first: "John", last: "Doe"}')->isJson();1213// false
1use Illuminate\Support\Str;23$result = Str::of('[1,2,3]')->isJson();45// true67$result = Str::of('{"first": "John", "last": "Doe"}')->isJson();89// true1011$result = Str::of('{first: "John", last: "Doe"}')->isJson();1213// false
isUlid
The isUlid
method determines if a given string is a ULID:
1use Illuminate\Support\Str;23$result = Str::of('01gd6r360bp37zj17nxb55yv40')->isUlid();45// true67$result = Str::of('Taylor')->isUlid();89// false
1use Illuminate\Support\Str;23$result = Str::of('01gd6r360bp37zj17nxb55yv40')->isUlid();45// true67$result = Str::of('Taylor')->isUlid();89// false
isUrl
The isUrl
method determines if a given string is a URL:
1use Illuminate\Support\Str;23$result = Str::of('http://example.com')->isUrl();45// true67$result = Str::of('Taylor')->isUrl();89// false
1use Illuminate\Support\Str;23$result = Str::of('http://example.com')->isUrl();45// true67$result = Str::of('Taylor')->isUrl();89// false
The isUrl
method considers a wide range of protocols as valid. However, you may specify the protocols that should be considered valid by providing them to the isUrl
method:
1$result = Str::of('http://example.com')->isUrl(['http', 'https']);
1$result = Str::of('http://example.com')->isUrl(['http', 'https']);
isUuid
The isUuid
method determines if a given string is a UUID:
1use Illuminate\Support\Str;23$result = Str::of('5ace9ab9-e9cf-4ec6-a19d-5881212a452c')->isUuid();45// true67$result = Str::of('Taylor')->isUuid();89// false
1use Illuminate\Support\Str;23$result = Str::of('5ace9ab9-e9cf-4ec6-a19d-5881212a452c')->isUuid();45// true67$result = Str::of('Taylor')->isUuid();89// false
kebab
The kebab
method converts the given string to kebab-case
:
1use Illuminate\Support\Str;23$converted = Str::of('fooBar')->kebab();45// foo-bar
1use Illuminate\Support\Str;23$converted = Str::of('fooBar')->kebab();45// foo-bar
lcfirst
The lcfirst
method returns the given string with the first character lowercased:
1use Illuminate\Support\Str;23$string = Str::of('Foo Bar')->lcfirst();45// foo Bar
1use Illuminate\Support\Str;23$string = Str::of('Foo Bar')->lcfirst();45// foo Bar
length
The length
method returns the length of the given string:
1use Illuminate\Support\Str;23$length = Str::of('Laravel')->length();45// 7
1use Illuminate\Support\Str;23$length = Str::of('Laravel')->length();45// 7
limit
The limit
method truncates the given string to the specified length:
1use Illuminate\Support\Str;23$truncated = Str::of('The quick brown fox jumps over the lazy dog')->limit(20);45// The quick brown fox...
1use Illuminate\Support\Str;23$truncated = Str::of('The quick brown fox jumps over the lazy dog')->limit(20);45// The quick brown fox...
You may also pass a second argument to change the string that will be appended to the end of the truncated string:
1use Illuminate\Support\Str;23$truncated = Str::of('The quick brown fox jumps over the lazy dog')->limit(20, ' (...)');45// The quick brown fox (...)
1use Illuminate\Support\Str;23$truncated = Str::of('The quick brown fox jumps over the lazy dog')->limit(20, ' (...)');45// The quick brown fox (...)
lower
The lower
method converts the given string to lowercase:
1use Illuminate\Support\Str;23$result = Str::of('LARAVEL')->lower();45// 'laravel'
1use Illuminate\Support\Str;23$result = Str::of('LARAVEL')->lower();45// 'laravel'
ltrim
The ltrim
method trims the left side of the string:
1use Illuminate\Support\Str;23$string = Str::of(' Laravel ')->ltrim();45// 'Laravel '67$string = Str::of('/Laravel/')->ltrim('/');89// 'Laravel/'
1use Illuminate\Support\Str;23$string = Str::of(' Laravel ')->ltrim();45// 'Laravel '67$string = Str::of('/Laravel/')->ltrim('/');89// 'Laravel/'
markdown
The markdown
method converts GitHub flavored Markdown into HTML:
1use Illuminate\Support\Str;23$html = Str::of('# Laravel')->markdown();45// <h1>Laravel</h1>67$html = Str::of('# Taylor <b>Otwell</b>')->markdown([8 'html_input' => 'strip',9]);1011// <h1>Taylor Otwell</h1>
1use Illuminate\Support\Str;23$html = Str::of('# Laravel')->markdown();45// <h1>Laravel</h1>67$html = Str::of('# Taylor <b>Otwell</b>')->markdown([8 'html_input' => 'strip',9]);1011// <h1>Taylor Otwell</h1>
Markdown Security
By default, Markdown supports raw HTML, which will expose Cross-Site Scripting (XSS) vulnerabilities when used with raw user input. As per the CommonMark Security documentation, you may use the html_input
option to either escape or strip raw HTML, and the allow_unsafe_links
option to specify whether to allow unsafe links. If you need to allow some raw HTML, you should pass your compiled Markdown through an HTML Purifier:
1use Illuminate\Support\Str;23Str::of('Inject: <script>alert("Hello XSS!");</script>')->markdown([4 'html_input' => 'strip',5 'allow_unsafe_links' => false,6]);78// <p>Inject: alert("Hello XSS!");</p>
1use Illuminate\Support\Str;23Str::of('Inject: <script>alert("Hello XSS!");</script>')->markdown([4 'html_input' => 'strip',5 'allow_unsafe_links' => false,6]);78// <p>Inject: alert("Hello XSS!");</p>
mask
The mask
method masks a portion of a string with a repeated character, and may be used to obfuscate segments of strings such as email addresses and phone numbers:
1use Illuminate\Support\Str;245// tay***************
1use Illuminate\Support\Str;245// tay***************
If needed, you may provide negative numbers as the third or fourth argument to the mask
method, which will instruct the method to begin masking at the given distance from the end of the string:
23// tay***@example.com467// tayl**********.com
23// tay***@example.com467// tayl**********.com
match
The match
method will return the portion of a string that matches a given regular expression pattern:
1use Illuminate\Support\Str;23$result = Str::of('foo bar')->match('/bar/');45// 'bar'67$result = Str::of('foo bar')->match('/foo (.*)/');89// 'bar'
1use Illuminate\Support\Str;23$result = Str::of('foo bar')->match('/bar/');45// 'bar'67$result = Str::of('foo bar')->match('/foo (.*)/');89// 'bar'
matchAll
The matchAll
method will return a collection containing the portions of a string that match a given regular expression pattern:
1use Illuminate\Support\Str;23$result = Str::of('bar foo bar')->matchAll('/bar/');45// collect(['bar', 'bar'])
1use Illuminate\Support\Str;23$result = Str::of('bar foo bar')->matchAll('/bar/');45// collect(['bar', 'bar'])
If you specify a matching group within the expression, Laravel will return a collection of that group's matches:
1use Illuminate\Support\Str;23$result = Str::of('bar fun bar fly')->matchAll('/f(\w*)/');45// collect(['un', 'ly']);
1use Illuminate\Support\Str;23$result = Str::of('bar fun bar fly')->matchAll('/f(\w*)/');45// collect(['un', 'ly']);
If no matches are found, an empty collection will be returned.
isMatch
The isMatch
method will return true
if the string matches a given regular expression:
1use Illuminate\Support\Str;23$result = Str::of('foo bar')->isMatch('/foo (.*)/');45// true67$result = Str::of('laravel')->isMatch('/foo (.*)/');89// false
1use Illuminate\Support\Str;23$result = Str::of('foo bar')->isMatch('/foo (.*)/');45// true67$result = Str::of('laravel')->isMatch('/foo (.*)/');89// false
newLine
The newLine
method appends an "end of line" character to a string:
1use Illuminate\Support\Str;23$padded = Str::of('Laravel')->newLine()->append('Framework');45// 'Laravel6// Framework'
1use Illuminate\Support\Str;23$padded = Str::of('Laravel')->newLine()->append('Framework');45// 'Laravel6// Framework'
padBoth
The padBoth
method wraps PHP's str_pad
function, padding both sides of a string with another string until the final string reaches the desired length:
1use Illuminate\Support\Str;23$padded = Str::of('James')->padBoth(10, '_');45// '__James___'67$padded = Str::of('James')->padBoth(10);89// ' James '
1use Illuminate\Support\Str;23$padded = Str::of('James')->padBoth(10, '_');45// '__James___'67$padded = Str::of('James')->padBoth(10);89// ' James '
padLeft
The padLeft
method wraps PHP's str_pad
function, padding the left side of a string with another string until the final string reaches the desired length:
1use Illuminate\Support\Str;23$padded = Str::of('James')->padLeft(10, '-=');45// '-=-=-James'67$padded = Str::of('James')->padLeft(10);89// ' James'
1use Illuminate\Support\Str;23$padded = Str::of('James')->padLeft(10, '-=');45// '-=-=-James'67$padded = Str::of('James')->padLeft(10);89// ' James'
padRight
The padRight
method wraps PHP's str_pad
function, padding the right side of a string with another string until the final string reaches the desired length:
1use Illuminate\Support\Str;23$padded = Str::of('James')->padRight(10, '-');45// 'James-----'67$padded = Str::of('James')->padRight(10);89// 'James '
1use Illuminate\Support\Str;23$padded = Str::of('James')->padRight(10, '-');45// 'James-----'67$padded = Str::of('James')->padRight(10);89// 'James '
pipe
The pipe
method allows you to transform the string by passing its current value to the given callable:
1use Illuminate\Support\Str;2use Illuminate\Support\Stringable;34$hash = Str::of('Laravel')->pipe('md5')->prepend('Checksum: ');56// 'Checksum: a5c95b86291ea299fcbe64458ed12702'78$closure = Str::of('foo')->pipe(function (Stringable $str) {9 return 'bar';10});1112// 'bar'
1use Illuminate\Support\Str;2use Illuminate\Support\Stringable;34$hash = Str::of('Laravel')->pipe('md5')->prepend('Checksum: ');56// 'Checksum: a5c95b86291ea299fcbe64458ed12702'78$closure = Str::of('foo')->pipe(function (Stringable $str) {9 return 'bar';10});1112// 'bar'
plural
The plural
method converts a singular word string to its plural form. This function supports any of the languages support by Laravel's pluralizer:
1use Illuminate\Support\Str;23$plural = Str::of('car')->plural();45// cars67$plural = Str::of('child')->plural();89// children
1use Illuminate\Support\Str;23$plural = Str::of('car')->plural();45// cars67$plural = Str::of('child')->plural();89// children
You may provide an integer as a second argument to the function to retrieve the singular or plural form of the string:
1use Illuminate\Support\Str;23$plural = Str::of('child')->plural(2);45// children67$plural = Str::of('child')->plural(1);89// child
1use Illuminate\Support\Str;23$plural = Str::of('child')->plural(2);45// children67$plural = Str::of('child')->plural(1);89// child
position
The position
method returns the position of the first occurrence of a substring in a string. If the substring does not exist within the string, false
is returned:
1use Illuminate\Support\Str;23$position = Str::of('Hello, World!')->position('Hello');45// 067$position = Str::of('Hello, World!')->position('W');89// 7
1use Illuminate\Support\Str;23$position = Str::of('Hello, World!')->position('Hello');45// 067$position = Str::of('Hello, World!')->position('W');89// 7
prepend
The prepend
method prepends the given values onto the string:
1use Illuminate\Support\Str;23$string = Str::of('Framework')->prepend('Laravel ');45// Laravel Framework
1use Illuminate\Support\Str;23$string = Str::of('Framework')->prepend('Laravel ');45// Laravel Framework
remove
The remove
method removes the given value or array of values from the string:
1use Illuminate\Support\Str;23$string = Str::of('Arkansas is quite beautiful!')->remove('quite');45// Arkansas is beautiful!
1use Illuminate\Support\Str;23$string = Str::of('Arkansas is quite beautiful!')->remove('quite');45// Arkansas is beautiful!
You may also pass false
as a second parameter to ignore case when removing strings.
repeat
The repeat
method repeats the given string:
1use Illuminate\Support\Str;23$repeated = Str::of('a')->repeat(5);45// aaaaa
1use Illuminate\Support\Str;23$repeated = Str::of('a')->repeat(5);45// aaaaa
replace
The replace
method replaces a given string within the string:
1use Illuminate\Support\Str;23$replaced = Str::of('Laravel 6.x')->replace('6.x', '7.x');45// Laravel 7.x
1use Illuminate\Support\Str;23$replaced = Str::of('Laravel 6.x')->replace('6.x', '7.x');45// Laravel 7.x
The replace
method also accepts a caseSensitive
argument. By default, the replace
method is case sensitive:
1$replaced = Str::of('macOS 13.x')->replace(2 'macOS', 'iOS', caseSensitive: false3);
1$replaced = Str::of('macOS 13.x')->replace(2 'macOS', 'iOS', caseSensitive: false3);
replaceArray
The replaceArray
method replaces a given value in the string sequentially using an array:
1use Illuminate\Support\Str;23$string = 'The event will take place between ? and ?';45$replaced = Str::of($string)->replaceArray('?', ['8:30', '9:00']);67// The event will take place between 8:30 and 9:00
1use Illuminate\Support\Str;23$string = 'The event will take place between ? and ?';45$replaced = Str::of($string)->replaceArray('?', ['8:30', '9:00']);67// The event will take place between 8:30 and 9:00
replaceFirst
The replaceFirst
method replaces the first occurrence of a given value in a string:
1use Illuminate\Support\Str;23$replaced = Str::of('the quick brown fox jumps over the lazy dog')->replaceFirst('the', 'a');45// a quick brown fox jumps over the lazy dog
1use Illuminate\Support\Str;23$replaced = Str::of('the quick brown fox jumps over the lazy dog')->replaceFirst('the', 'a');45// a quick brown fox jumps over the lazy dog
replaceLast
The replaceLast
method replaces the last occurrence of a given value in a string:
1use Illuminate\Support\Str;23$replaced = Str::of('the quick brown fox jumps over the lazy dog')->replaceLast('the', 'a');45// the quick brown fox jumps over a lazy dog
1use Illuminate\Support\Str;23$replaced = Str::of('the quick brown fox jumps over the lazy dog')->replaceLast('the', 'a');45// the quick brown fox jumps over a lazy dog
replaceMatches
The replaceMatches
method replaces all portions of a string matching a pattern with the given replacement string:
1use Illuminate\Support\Str;23$replaced = Str::of('(+1) 501-555-1000')->replaceMatches('/[^A-Za-z0-9]++/', '')45// '15015551000'
1use Illuminate\Support\Str;23$replaced = Str::of('(+1) 501-555-1000')->replaceMatches('/[^A-Za-z0-9]++/', '')45// '15015551000'
The replaceMatches
method also accepts a closure that will be invoked with each portion of the string matching the given pattern, allowing you to perform the replacement logic within the closure and return the replaced value:
1use Illuminate\Support\Str;23$replaced = Str::of('123')->replaceMatches('/\d/', function (array $matches) {4 return '['.$matches[0].']';5});67// '[1][2][3]'
1use Illuminate\Support\Str;23$replaced = Str::of('123')->replaceMatches('/\d/', function (array $matches) {4 return '['.$matches[0].']';5});67// '[1][2][3]'
replaceStart
The replaceStart
method replaces the first occurrence of the given value only if the value appears at the start of the string:
1use Illuminate\Support\Str;23$replaced = Str::of('Hello World')->replaceStart('Hello', 'Laravel');45// Laravel World67$replaced = Str::of('Hello World')->replaceStart('World', 'Laravel');89// Hello World
1use Illuminate\Support\Str;23$replaced = Str::of('Hello World')->replaceStart('Hello', 'Laravel');45// Laravel World67$replaced = Str::of('Hello World')->replaceStart('World', 'Laravel');89// Hello World
replaceEnd
The replaceEnd
method replaces the last occurrence of the given value only if the value appears at the end of the string:
1use Illuminate\Support\Str;23$replaced = Str::of('Hello World')->replaceEnd('World', 'Laravel');45// Hello Laravel67$replaced = Str::of('Hello World')->replaceEnd('Hello', 'Laravel');89// Hello World
1use Illuminate\Support\Str;23$replaced = Str::of('Hello World')->replaceEnd('World', 'Laravel');45// Hello Laravel67$replaced = Str::of('Hello World')->replaceEnd('Hello', 'Laravel');89// Hello World
rtrim
The rtrim
method trims the right side of the given string:
1use Illuminate\Support\Str;23$string = Str::of(' Laravel ')->rtrim();45// ' Laravel'67$string = Str::of('/Laravel/')->rtrim('/');89// '/Laravel'
1use Illuminate\Support\Str;23$string = Str::of(' Laravel ')->rtrim();45// ' Laravel'67$string = Str::of('/Laravel/')->rtrim('/');89// '/Laravel'
scan
The scan
method parses input from a string into a collection according to a format supported by the sscanf
PHP function:
1use Illuminate\Support\Str;23$collection = Str::of('filename.jpg')->scan('%[^.].%s');45// collect(['filename', 'jpg'])
1use Illuminate\Support\Str;23$collection = Str::of('filename.jpg')->scan('%[^.].%s');45// collect(['filename', 'jpg'])
singular
The singular
method converts a string to its singular form. This function supports any of the languages support by Laravel's pluralizer:
1use Illuminate\Support\Str;23$singular = Str::of('cars')->singular();45// car67$singular = Str::of('children')->singular();89// child
1use Illuminate\Support\Str;23$singular = Str::of('cars')->singular();45// car67$singular = Str::of('children')->singular();89// child
slug
The slug
method generates a URL friendly "slug" from the given string:
1use Illuminate\Support\Str;23$slug = Str::of('Laravel Framework')->slug('-');45// laravel-framework
1use Illuminate\Support\Str;23$slug = Str::of('Laravel Framework')->slug('-');45// laravel-framework
snake
The snake
method converts the given string to snake_case
:
1use Illuminate\Support\Str;23$converted = Str::of('fooBar')->snake();45// foo_bar
1use Illuminate\Support\Str;23$converted = Str::of('fooBar')->snake();45// foo_bar
split
The split
method splits a string into a collection using a regular expression:
1use Illuminate\Support\Str;23$segments = Str::of('one, two, three')->split('/[\s,]+/');45// collect(["one", "two", "three"])
1use Illuminate\Support\Str;23$segments = Str::of('one, two, three')->split('/[\s,]+/');45// collect(["one", "two", "three"])
squish
The squish
method removes all extraneous white space from a string, including extraneous white space between words:
1use Illuminate\Support\Str;23$string = Str::of(' laravel framework ')->squish();45// laravel framework
1use Illuminate\Support\Str;23$string = Str::of(' laravel framework ')->squish();45// laravel framework
start
The start
method adds a single instance of the given value to a string if it does not already start with that value:
1use Illuminate\Support\Str;23$adjusted = Str::of('this/string')->start('/');45// /this/string67$adjusted = Str::of('/this/string')->start('/');89// /this/string
1use Illuminate\Support\Str;23$adjusted = Str::of('this/string')->start('/');45// /this/string67$adjusted = Str::of('/this/string')->start('/');89// /this/string
startsWith
The startsWith
method determines if the given string begins with the given value:
1use Illuminate\Support\Str;23$result = Str::of('This is my name')->startsWith('This');45// true
1use Illuminate\Support\Str;23$result = Str::of('This is my name')->startsWith('This');45// true
stripTags
The stripTags
method removes all HTML and PHP tags from a string:
1use Illuminate\Support\Str;23$result = Str::of('<a href="https://laravel.com">Taylor <b>Otwell</b></a>')->stripTags();45// Taylor Otwell67$result = Str::of('<a href="https://laravel.com">Taylor <b>Otwell</b></a>')->stripTags('<b>');89// Taylor <b>Otwell</b>
1use Illuminate\Support\Str;23$result = Str::of('<a href="https://laravel.com">Taylor <b>Otwell</b></a>')->stripTags();45// Taylor Otwell67$result = Str::of('<a href="https://laravel.com">Taylor <b>Otwell</b></a>')->stripTags('<b>');89// Taylor <b>Otwell</b>
studly
The studly
method converts the given string to StudlyCase
:
1use Illuminate\Support\Str;23$converted = Str::of('foo_bar')->studly();45// FooBar
1use Illuminate\Support\Str;23$converted = Str::of('foo_bar')->studly();45// FooBar
substr
The substr
method returns the portion of the string specified by the given start and length parameters:
1use Illuminate\Support\Str;23$string = Str::of('Laravel Framework')->substr(8);45// Framework67$string = Str::of('Laravel Framework')->substr(8, 5);89// Frame
1use Illuminate\Support\Str;23$string = Str::of('Laravel Framework')->substr(8);45// Framework67$string = Str::of('Laravel Framework')->substr(8, 5);89// Frame
substrReplace
The substrReplace
method replaces text within a portion of a string, starting at the position specified by the second argument and replacing the number of characters specified by the third argument. Passing 0
to the method's third argument will insert the string at the specified position without replacing any of the existing characters in the string:
1use Illuminate\Support\Str;23$string = Str::of('1300')->substrReplace(':', 2);45// 13:67$string = Str::of('The Framework')->substrReplace(' Laravel', 3, 0);89// The Laravel Framework
1use Illuminate\Support\Str;23$string = Str::of('1300')->substrReplace(':', 2);45// 13:67$string = Str::of('The Framework')->substrReplace(' Laravel', 3, 0);89// The Laravel Framework
swap
The swap
method replaces multiple values in the string using PHP's strtr
function:
1use Illuminate\Support\Str;23$string = Str::of('Tacos are great!')4 ->swap([5 'Tacos' => 'Burritos',6 'great' => 'fantastic',7 ]);89// Burritos are fantastic!
1use Illuminate\Support\Str;23$string = Str::of('Tacos are great!')4 ->swap([5 'Tacos' => 'Burritos',6 'great' => 'fantastic',7 ]);89// Burritos are fantastic!
take
The take
method returns a specified number of characters from the beginning of the string:
1use Illuminate\Support\Str;23$taken = Str::of('Build something amazing!')->take(5);45// Build
1use Illuminate\Support\Str;23$taken = Str::of('Build something amazing!')->take(5);45// Build
tap
The tap
method passes the string to the given closure, allowing you to examine and interact with the string while not affecting the string itself. The original string is returned by the tap
method regardless of what is returned by the closure:
1use Illuminate\Support\Str;2use Illuminate\Support\Stringable;34$string = Str::of('Laravel')5 ->append(' Framework')6 ->tap(function (Stringable $string) {7 dump('String after append: '.$string);8 })9 ->upper();1011// LARAVEL FRAMEWORK
1use Illuminate\Support\Str;2use Illuminate\Support\Stringable;34$string = Str::of('Laravel')5 ->append(' Framework')6 ->tap(function (Stringable $string) {7 dump('String after append: '.$string);8 })9 ->upper();1011// LARAVEL FRAMEWORK
test
The test
method determines if a string matches the given regular expression pattern:
1use Illuminate\Support\Str;23$result = Str::of('Laravel Framework')->test('/Laravel/');45// true
1use Illuminate\Support\Str;23$result = Str::of('Laravel Framework')->test('/Laravel/');45// true
title
The title
method converts the given string to Title Case
:
1use Illuminate\Support\Str;23$converted = Str::of('a nice title uses the correct case')->title();45// A Nice Title Uses The Correct Case
1use Illuminate\Support\Str;23$converted = Str::of('a nice title uses the correct case')->title();45// A Nice Title Uses The Correct Case
toBase64()
The toBase64
method converts the given string to Base64:
1use Illuminate\Support\Str;23$base64 = Str::of('Laravel')->toBase64();45// TGFyYXZlbA==
1use Illuminate\Support\Str;23$base64 = Str::of('Laravel')->toBase64();45// TGFyYXZlbA==
trim
The trim
method trims the given string:
1use Illuminate\Support\Str;23$string = Str::of(' Laravel ')->trim();45// 'Laravel'67$string = Str::of('/Laravel/')->trim('/');89// 'Laravel'
1use Illuminate\Support\Str;23$string = Str::of(' Laravel ')->trim();45// 'Laravel'67$string = Str::of('/Laravel/')->trim('/');89// 'Laravel'
ucfirst
The ucfirst
method returns the given string with the first character capitalized:
1use Illuminate\Support\Str;23$string = Str::of('foo bar')->ucfirst();45// Foo bar
1use Illuminate\Support\Str;23$string = Str::of('foo bar')->ucfirst();45// Foo bar
ucsplit
The ucsplit
method splits the given string into a collection by uppercase characters:
1use Illuminate\Support\Str;23$string = Str::of('Foo Bar')->ucsplit();45// collect(['Foo', 'Bar'])
1use Illuminate\Support\Str;23$string = Str::of('Foo Bar')->ucsplit();45// collect(['Foo', 'Bar'])
unwrap
The unwrap
method removes the specified strings from the beginning and end of a given string:
1use Illuminate\Support\Str;23Str::of('-Laravel-')->unwrap('-');45// Laravel67Str::of('{framework: "Laravel"}')->unwrap('{', '}');89// framework: "Laravel"
1use Illuminate\Support\Str;23Str::of('-Laravel-')->unwrap('-');45// Laravel67Str::of('{framework: "Laravel"}')->unwrap('{', '}');89// framework: "Laravel"
upper
The upper
method converts the given string to uppercase:
1use Illuminate\Support\Str;23$adjusted = Str::of('laravel')->upper();45// LARAVEL
1use Illuminate\Support\Str;23$adjusted = Str::of('laravel')->upper();45// LARAVEL
when
The when
method invokes the given closure if a given condition is true
. The closure will receive the fluent string instance:
1use Illuminate\Support\Str;2use Illuminate\Support\Stringable;34$string = Str::of('Taylor')5 ->when(true, function (Stringable $string) {6 return $string->append(' Otwell');7 });89// 'Taylor Otwell'
1use Illuminate\Support\Str;2use Illuminate\Support\Stringable;34$string = Str::of('Taylor')5 ->when(true, function (Stringable $string) {6 return $string->append(' Otwell');7 });89// 'Taylor Otwell'
If necessary, you may pass another closure as the third parameter to the when
method. This closure will execute if the condition parameter evaluates to false
.
whenContains
The whenContains
method invokes the given closure if the string contains the given value. The closure will receive the fluent string instance:
1use Illuminate\Support\Str;2use Illuminate\Support\Stringable;34$string = Str::of('tony stark')5 ->whenContains('tony', function (Stringable $string) {6 return $string->title();7 });89// 'Tony Stark'
1use Illuminate\Support\Str;2use Illuminate\Support\Stringable;34$string = Str::of('tony stark')5 ->whenContains('tony', function (Stringable $string) {6 return $string->title();7 });89// 'Tony Stark'
If necessary, you may pass another closure as the third parameter to the when
method. This closure will execute if the string does not contain the given value.
You may also pass an array of values to determine if the given string contains any of the values in the array:
1use Illuminate\Support\Str;2use Illuminate\Support\Stringable;34$string = Str::of('tony stark')5 ->whenContains(['tony', 'hulk'], function (Stringable $string) {6 return $string->title();7 });89// Tony Stark
1use Illuminate\Support\Str;2use Illuminate\Support\Stringable;34$string = Str::of('tony stark')5 ->whenContains(['tony', 'hulk'], function (Stringable $string) {6 return $string->title();7 });89// Tony Stark
whenContainsAll
The whenContainsAll
method invokes the given closure if the string contains all of the given sub-strings. The closure will receive the fluent string instance:
1use Illuminate\Support\Str;2use Illuminate\Support\Stringable;34$string = Str::of('tony stark')5 ->whenContainsAll(['tony', 'stark'], function (Stringable $string) {6 return $string->title();7 });89// 'Tony Stark'
1use Illuminate\Support\Str;2use Illuminate\Support\Stringable;34$string = Str::of('tony stark')5 ->whenContainsAll(['tony', 'stark'], function (Stringable $string) {6 return $string->title();7 });89// 'Tony Stark'
If necessary, you may pass another closure as the third parameter to the when
method. This closure will execute if the condition parameter evaluates to false
.
whenEmpty
The whenEmpty
method invokes the given closure if the string is empty. If the closure returns a value, that value will also be returned by the whenEmpty
method. If the closure does not return a value, the fluent string instance will be returned:
1use Illuminate\Support\Str;2use Illuminate\Support\Stringable;34$string = Str::of(' ')->whenEmpty(function (Stringable $string) {5 return $string->trim()->prepend('Laravel');6});78// 'Laravel'
1use Illuminate\Support\Str;2use Illuminate\Support\Stringable;34$string = Str::of(' ')->whenEmpty(function (Stringable $string) {5 return $string->trim()->prepend('Laravel');6});78// 'Laravel'
whenNotEmpty
The whenNotEmpty
method invokes the given closure if the string is not empty. If the closure returns a value, that value will also be returned by the whenNotEmpty
method. If the closure does not return a value, the fluent string instance will be returned:
1use Illuminate\Support\Str;2use Illuminate\Support\Stringable;34$string = Str::of('Framework')->whenNotEmpty(function (Stringable $string) {5 return $string->prepend('Laravel ');6});78// 'Laravel Framework'
1use Illuminate\Support\Str;2use Illuminate\Support\Stringable;34$string = Str::of('Framework')->whenNotEmpty(function (Stringable $string) {5 return $string->prepend('Laravel ');6});78// 'Laravel Framework'
whenStartsWith
The whenStartsWith
method invokes the given closure if the string starts with the given sub-string. The closure will receive the fluent string instance:
1use Illuminate\Support\Str;2use Illuminate\Support\Stringable;34$string = Str::of('disney world')->whenStartsWith('disney', function (Stringable $string) {5 return $string->title();6});78// 'Disney World'
1use Illuminate\Support\Str;2use Illuminate\Support\Stringable;34$string = Str::of('disney world')->whenStartsWith('disney', function (Stringable $string) {5 return $string->title();6});78// 'Disney World'
whenEndsWith
The whenEndsWith
method invokes the given closure if the string ends with the given sub-string. The closure will receive the fluent string instance:
1use Illuminate\Support\Str;2use Illuminate\Support\Stringable;34$string = Str::of('disney world')->whenEndsWith('world', function (Stringable $string) {5 return $string->title();6});78// 'Disney World'
1use Illuminate\Support\Str;2use Illuminate\Support\Stringable;34$string = Str::of('disney world')->whenEndsWith('world', function (Stringable $string) {5 return $string->title();6});78// 'Disney World'
whenExactly
The whenExactly
method invokes the given closure if the string exactly matches the given string. The closure will receive the fluent string instance:
1use Illuminate\Support\Str;2use Illuminate\Support\Stringable;34$string = Str::of('laravel')->whenExactly('laravel', function (Stringable $string) {5 return $string->title();6});78// 'Laravel'
1use Illuminate\Support\Str;2use Illuminate\Support\Stringable;34$string = Str::of('laravel')->whenExactly('laravel', function (Stringable $string) {5 return $string->title();6});78// 'Laravel'
whenNotExactly
The whenNotExactly
method invokes the given closure if the string does not exactly match the given string. The closure will receive the fluent string instance:
1use Illuminate\Support\Str;2use Illuminate\Support\Stringable;34$string = Str::of('framework')->whenNotExactly('laravel', function (Stringable $string) {5 return $string->title();6});78// 'Framework'
1use Illuminate\Support\Str;2use Illuminate\Support\Stringable;34$string = Str::of('framework')->whenNotExactly('laravel', function (Stringable $string) {5 return $string->title();6});78// 'Framework'
whenIs
The whenIs
method invokes the given closure if the string matches a given pattern. Asterisks may be used as wildcard values. The closure will receive the fluent string instance:
1use Illuminate\Support\Str;2use Illuminate\Support\Stringable;34$string = Str::of('foo/bar')->whenIs('foo/*', function (Stringable $string) {5 return $string->append('/baz');6});78// 'foo/bar/baz'
1use Illuminate\Support\Str;2use Illuminate\Support\Stringable;34$string = Str::of('foo/bar')->whenIs('foo/*', function (Stringable $string) {5 return $string->append('/baz');6});78// 'foo/bar/baz'
whenIsAscii
The whenIsAscii
method invokes the given closure if the string is 7 bit ASCII. The closure will receive the fluent string instance:
1use Illuminate\Support\Str;2use Illuminate\Support\Stringable;34$string = Str::of('laravel')->whenIsAscii(function (Stringable $string) {5 return $string->title();6});78// 'Laravel'
1use Illuminate\Support\Str;2use Illuminate\Support\Stringable;34$string = Str::of('laravel')->whenIsAscii(function (Stringable $string) {5 return $string->title();6});78// 'Laravel'
whenIsUlid
The whenIsUlid
method invokes the given closure if the string is a valid ULID. The closure will receive the fluent string instance:
1use Illuminate\Support\Str;23$string = Str::of('01gd6r360bp37zj17nxb55yv40')->whenIsUlid(function (Stringable $string) {4 return $string->substr(0, 8);5});67// '01gd6r36'
1use Illuminate\Support\Str;23$string = Str::of('01gd6r360bp37zj17nxb55yv40')->whenIsUlid(function (Stringable $string) {4 return $string->substr(0, 8);5});67// '01gd6r36'
whenIsUuid
The whenIsUuid
method invokes the given closure if the string is a valid UUID. The closure will receive the fluent string instance:
1use Illuminate\Support\Str;2use Illuminate\Support\Stringable;34$string = Str::of('a0a2a2d2-0b87-4a18-83f2-2529882be2de')->whenIsUuid(function (Stringable $string) {5 return $string->substr(0, 8);6});78// 'a0a2a2d2'
1use Illuminate\Support\Str;2use Illuminate\Support\Stringable;34$string = Str::of('a0a2a2d2-0b87-4a18-83f2-2529882be2de')->whenIsUuid(function (Stringable $string) {5 return $string->substr(0, 8);6});78// 'a0a2a2d2'
whenTest
The whenTest
method invokes the given closure if the string matches the given regular expression. The closure will receive the fluent string instance:
1use Illuminate\Support\Str;2use Illuminate\Support\Stringable;34$string = Str::of('laravel framework')->whenTest('/laravel/', function (Stringable $string) {5 return $string->title();6});78// 'Laravel Framework'
1use Illuminate\Support\Str;2use Illuminate\Support\Stringable;34$string = Str::of('laravel framework')->whenTest('/laravel/', function (Stringable $string) {5 return $string->title();6});78// 'Laravel Framework'
wordCount
The wordCount
method returns the number of words that a string contains:
1use Illuminate\Support\Str;23Str::of('Hello, world!')->wordCount(); // 2
1use Illuminate\Support\Str;23Str::of('Hello, world!')->wordCount(); // 2
words
The words
method limits the number of words in a string. If necessary, you may specify an additional string that will be appended to the truncated string:
1use Illuminate\Support\Str;23$string = Str::of('Perfectly balanced, as all things should be.')->words(3, ' >>>');45// Perfectly balanced, as >>>
1use Illuminate\Support\Str;23$string = Str::of('Perfectly balanced, as all things should be.')->words(3, ' >>>');45// Perfectly balanced, as >>>