Skip to content
Advertisement

Truncate a string to first n characters of a string and add three dots if any characters are removed

How can I get the first n characters of a string in PHP? What’s the fastest way to trim a string to a specific number of characters, and append ‘…’ if needed?

Advertisement

Answer

JavaScript

Update:

Based on suggestion for checking length (and also ensuring similar lengths on trimmed and untrimmed strings):

JavaScript

So you will get a string of max 13 characters; either 13 (or less) normal characters or 10 characters followed by ‘…’

Update 2:

Or as function:

JavaScript

Update 3:

It’s been a while since I wrote this answer and I don’t actually use this code any more. I prefer this function which prevents breaking the string in the middle of a word using the wordwrap function:

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement