wiki/content/20201116130210-truncate.md

19 lines
279 B
Markdown
Raw Normal View History

2024-05-06 20:40:05 +00:00
---
id: b27eb467-5ff4-494f-aea4-85000152dda9
title: truncate()
---
- [Keep last word](20201116130327-keep_last_word)
# Description
Truncates string
# Syntax
``` php
use function Symfony\Component\String\u;
u('Lorem Ipsum')->truncate(8, '…'); // 'Lorem I…'
```