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

masteringlaravel logo
Laravel Code Review

Get expert guidance in a few days with a Laravel code review

Visit Laravel Code Review

The latest

View all →
Agent Run Observability in Laravel AI SDK 0.11 image

Agent Run Observability in Laravel AI SDK 0.11

Read article
Debounced Queued Event Listeners in Laravel image

Debounced Queued Event Listeners in Laravel

Read article
Statamic Mailables Viewer Previews Laravel Emails in the Control Panel image

Statamic Mailables Viewer Previews Laravel Emails in the Control Panel

Read article
Laravel Tackle: Run an AI Coding Agent in Your Laravel App image

Laravel Tackle: Run an AI Coding Agent in Your Laravel App

Read article
Queue::forward(): Reroute Laravel Queues in One Place image

Queue::forward(): Reroute Laravel Queues in One Place

Read article
Laravel Read-Through Filesystem: Lazy Storage Migration image

Laravel Read-Through Filesystem: Lazy Storage Migration

Read article