wiki/content/20201116130327-keep_last_word.md

18 lines
307 B
Markdown
Raw Normal View History

2024-05-06 20:40:05 +00:00
---
id: 5bb1ce24-7cdc-495f-b3d8-39f06f19e5bc
title: Keep last word
---
# Description
Keep last word when truncating.
# Syntax
``` php
use function Symfony\Component\String\u;
u('Lorem Ipsum')->truncate(8, '…'); // 'Lorem I…'
u('Lorem Ipsum')->truncate(8, '…', false); // 'Lorem Ipsum'
```