How to Check if String Contains Specific Word in Laravel?
This example will help you to check if a string contains any substring in laravel. you can check if url contains string in laravel using Str::contains(). i will give you simple example of laravel str contains case insensitive.
you can check if string contains a specific word in laravel 6, laravel 7, laravel 8, laravel 9, laravel 10 and laravel 11.
Laravel has a Str helper function. Str class has contains() method that will provide to check string contains in laravel application. contains() take a two argument one should be string and another will be string or array.
I will give you both example so you can easily use in your controller method. so let's see bellow both example will help you to use.
With Single Word Contains:
use Illuminate\Support\Str;
$myString = 'This is from itsolutionstuff.com website.';
$contains = Str::contains($myString, 'itsolutionstuff.com');
// true
With Multiple Words Contains:
use Illuminate\Support\Str;
$myString = 'This is from itsolutionstuff.com website.';
$contains = Str::contains($myString, ['itsolutionstuff.com', 'website']);
// true
You can use easily with your controller method.
I hope it can help you....
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- Laravel Country List with Flags Example
- How to Show Data in Modal using Ajax in Laravel?
- How to Use and Install Font Awesome Icons in Laravel?
- How to Install JQuery in Laravel Vite?
- How to Use Limit and Offset in Laravel Eloquent?
- Laravel Redirect to URL using redirect() Helper
- Laravel Generate Slug from Title Example
- How to Generate Random Unique String in Laravel?
- Laravel Localization(trans Helper) Tutorial Example
- How to Get Query Strings Value in Laravel?
- How to Create Widgets in Laravel Application?
- Laravel Change Date Format using Carbon Example
- How to Create Custom Helper Function in Laravel?