Laravel Tutorials

Repeat Strings Efficiently with Laravel's Str::repeat Method

Published
Repeat Strings Efficiently with Laravel's Str::repeat Method image

Laravel's Str::repeat method offers a simple solution for creating repeated string patterns by duplicating a string a specified number of times.

Repeat a string a specific number of times:

use Illuminate\Support\Str;
 
$character = 'x';
$repeated = Str::repeat($character, 4);
// Result: 'xxxx'

Here's how you might use it in a report formatter:

class ReportFormatter
{
public function createSeparatorLine(int $length = 50)
{
return sprintf(
'%s%s%s',
'+',
Str::repeat('-', $length - 2),
'+'
);
}
 
public function formatProgressBar(int $completed, int $total = 10)
{
$progress = Str::repeat('█', $completed);
$remaining = Str::repeat('░', $total - $completed);
 
return sprintf(
'[%s%s] %d%%',
$progress,
$remaining,
($completed / $total) * 100
);
}
 
public function createIndentation(int $level)
{
return sprintf(
'%s%s',
Str::repeat(' ', $level),
'- '
);
}
}
 
$formatter = new ReportFormatter();
 
echo $formatter->createSeparatorLine(30);
// Output: +----------------------------+
 
echo $formatter->formatProgressBar(7);
// Output: [███████░░░] 70%
 
echo $formatter->createIndentation(3);
// Output: -

The repeat method provides a clean way to handle string repetition tasks in your Laravel applications.

Harris Raftopoulos photo

Senior Software Engineer • Staff & Educator @ Laravel News • Co-organizer @ Laravel Greece Meetup

Sponsored

laravelcloud logo
Laravel Cloud

Easily create and manage your servers and deploy your Laravel applications in seconds.

Visit Laravel Cloud

The latest

View all →
CPX: The Composer Package Executor for PHP image

CPX: The Composer Package Executor for PHP

Read article
Laravel AI SDK Adds Human-in-the-Loop Tool Approval image

Laravel AI SDK Adds Human-in-the-Loop Tool Approval

Read article
Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals image

Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals

Read article
Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs image

Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs

Read article
Blade Formatting in Laravel Pint image

Blade Formatting in Laravel Pint

Read article
Inertia DevTools Is Now on the Chrome Web Store image

Inertia DevTools Is Now on the Chrome Web Store

Read article