Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do I fit long text into fixed width column where I have place for only line of text? I would need to shorten the text to fixed width (lets say to 100px) and I would like to add dots "..." at where string gets cut. Something like this for example:

My string is "Some really long string that I need to fit in there" and output in a fixed width column would look like this

|Some really long string...|

Thanks, Jume

share|improve this question

7 Answers

up vote 35 down vote accepted

You can do this with CSS alone:

.box {
    -o-text-overflow: ellipsis;   /* Opera */
    text-overflow:    ellipsis;   /* IE, Safari (WebKit) */
    overflow:hidden;              /* don't show excess chars */
    white-space:nowrap;           /* force single line */
    width: 300px;                 /* fixed width */
}

Check out this article about the CSS3 property text-overflow. Firefox currently (3.5.7) does not support this yet, but there is some workarounds.

share|improve this answer
But this wont add me "..." at the end of the string... – Primoz Rome Jan 21 '10 at 13:11
1  
Yes, it will. Read through the pages, I've linked for compatibility across browsers and workarounds. – Gordon Jan 21 '10 at 13:42
Ahh sorry. Thanks man, looks promising. – Primoz Rome Jan 21 '10 at 13:56
Cool! I coded up a kind-of-working solution before I saw your answer. gist.github.com/708155 – geon Nov 20 '10 at 21:20
1  
This: "text-overflow: ellipsis;" is all that is needed now in all current versions of IE, Opera, Firefox, Chrome & Safari so only need the work arounds (and "-o-text-overflow:") for older browser support. – GazB Oct 16 '12 at 10:51

Take a substring of the string then add the dots:

$target_length = 100;
$new_string = substr($string, 0, $target_length - 3);
$new_string = $new_string . "...";

Note if you're outputting to html, it might be worth using an ellipses (…) as the ending (which is three dots in one space) and also outputting in a fixed-width font:

$new_string = substr($string, 0, $target_length - 1);
$new_string = $new_string . "…";
share|improve this answer
This doesn't work right, since the string can have more or less CAPS or wider character... so if you take substring of fixed character (100 as you suggest) can output of different width when page renders. Try strings like: MMMMMMMMMMMMMMMMMMMM or iiiiiiiiiiiiiiiiiii and you see you already have a difference. – Primoz Rome Jan 21 '10 at 13:00
Hence what I said about outputting text in a fixed-width font. – adam Jan 21 '10 at 13:05
won't work in real life situations. – Bora Oct 24 '12 at 14:04
@Bora - please explain further – adam Oct 24 '12 at 16:52
I mean, that your solution, like every other's below you, will not work, since we very very seldomly use fixed-width fonts. Even then, there is the asian letters, which will have to be adjusted (enlarged, mostly) in size to be recognized properly. We are trying to setup a similar scheme and have already these problems. – Bora Oct 25 '12 at 8:01
show 1 more comment

I had a similar problem, the way I solved it was to strip the string down to 60 characters and append an '...' to the end of it.

An ugly solution? Yes, but unless there is a jQuery solution it's probably your best bet.

If you're using Smarty, this is how I solved the problem:

{$my_string|truncate:60}
share|improve this answer

Use substr and find out how many characters fit into the column. E.g.

$string = substr($string, 0, 10) . '...'

if 13 characters fit into the column

share|improve this answer
1  
You cannot find out how many characters fit into a column. It depends on the font used in the browser and the zoom level of the page. – Gordon Jan 21 '10 at 11:30
@Gordon you're assuming the output is html. What if this is a command line script? – adam Jan 21 '10 at 11:36
1  
@adam Why would the question be tagged CSS then? – Gordon Jan 21 '10 at 11:43

Here's a function I use to truncate strings. Like most of the suggestions here, it uses substr to truncate the string, but it will avoid splitting the string mid-word:

function truncate_text($string, $min_chars, $append = ' …') {
    $chars = strpos($string, " ", $min_chars);
    $truncated_string = substr($string, 0, $chars) . $append;
    return $truncated_rstring;
}
share|improve this answer

I think simple cutting text after N characters isn't what you're looking for. It's not a solution because the following text have both 15 character length: iiiiiiiiiiiiiii, mmmmmmmmmmmmmmm - notice that the second "word" is about three times longer than the first one.

JavaScript might be a solution:

  1. First prepare your mark-up:

    <p id="abc">{TEXT}</p>
    

    Where {TEXT} is your text truncated to 150 characters + ...

  2. Now when we've got a good base for JavaScript we can try to make what you're looking for:

    <html>
    <head> 
        <style type="text/css">
            #abc {
                width: 100px;
            }
        </style>
        <script type="text/javascript">
            document.addEventListener("DOMContentLoaded", function() {
                var ref  = document.getElementById("abc");
                var text = ref.text;
    
    
    
            ref.removeChild(ref.firstChild);
            ref.appendChild(document.createTextNode("..."));
    
    
            var maxHeight = ref.offsetHeight;
    
    
            var pos = 0;
            while (ref.offsetHeight &lt;= maxHeight) {
                var insert = text.substring(0, ++pos) + "...";
    
    
                var finalReplace = ref.replaceChild(document.createTextNode(insert), ref.firstChild);
            }
    
    
            ref.replaceChild(finalReplace, ref.firstChild);
        }, false);
    &lt;/script&gt;
    
    </head> <body> <p id="abc">My very, very, very, very, very, very, very long text...</p> </body> </html>
share|improve this answer

You can use PHP's wordwrap function for that :)

Example:

$text = "The quick brown fox jumped over the lazy dog.";
$newtext = wordwrap($text, 20, "<br />\n");

echo $newtext;
share|improve this answer
The OP wants to truncate the text rather than wrap it (although I agree wrapping might make more sense in some cases) – adam Jan 21 '10 at 11:26
Tried this but it doens't give me the result I want! I want to fit the text into width of 100 pixels and not fixed number of characters... – Primoz Rome Jan 21 '10 at 13:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.