What's the best way to truncate a URL so that it fits within a layout - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T08:17:10Zhttp://stackoverflow.com/feeds/question/206899http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/206899/whats-the-best-way-to-truncate-a-url-so-that-it-fits-within-a-layout1What's the best way to truncate a URL so that it fits within a layoutTom Martin2008-10-15T23:30:15Z2008-10-16T07:45:13Z
<p>What is the best way to truncate a URL when displaying it within a web page? I don't mean a link but literally displaying the URL as a value to the user, assuming that the text might be in a container of fixed width and you don't want to wrap or run outside of the container?</p>
<p>Is it better to truncate from the end, favouring the early part of the url:</p>
<p>eg. http/really.long/urlthaticantf...ere.html</p>
<p>Or place the '...' in the middle to favour the start and end of the link as the most value in terms of giving context:</p>
<p>eg. http/really.long/ur...aticantfithere.html</p>
<p>Also what is a good rule of thumb when choosing how long to make the truncated url? Should you be pessimistic and pick a likely wide character such as capital 'M' and see how many of these fit in the layout? This tends to give really short URLs in general as most characters are much narrower than 'M'.</p>
<p>Or should you be optimistic and use a truncation that generally gives a good length but risk overrunning when the URL contains many large characters?</p>
http://stackoverflow.com/questions/206899/whats-the-best-way-to-truncate-a-url-so-that-it-fits-within-a-layout/206908#2069082Answer by Corey Trager for What's the best way to truncate a URL so that it fits within a layoutCorey Trager2008-10-15T23:33:56Z2008-10-15T23:33:56Z<p>Truncate the middle, for the reasons you gave.</p>
http://stackoverflow.com/questions/206899/whats-the-best-way-to-truncate-a-url-so-that-it-fits-within-a-layout/206910#2069101Answer by Paul Nathan for What's the best way to truncate a URL so that it fits within a layoutPaul Nathan2008-10-15T23:34:06Z2008-10-15T23:34:06Z<p>I always want to see the server. There've been waves of keyloggers from suspect servers in some forums I visit, and that's given me server paranoia. </p>
<p>Ideally, I can scroll around and see the entire url in the container. :-) </p>
http://stackoverflow.com/questions/206899/whats-the-best-way-to-truncate-a-url-so-that-it-fits-within-a-layout/206915#2069151Answer by tunaranch for What's the best way to truncate a URL so that it fits within a layouttunaranch2008-10-15T23:35:23Z2008-10-15T23:35:23Z<p>I'd expect to see at least the server. And as long I can hover over the link and see the rest of it in my status bar, I'm happy.</p>
<p>Think of the links in Slashdot's comment system.</p>
http://stackoverflow.com/questions/206899/whats-the-best-way-to-truncate-a-url-so-that-it-fits-within-a-layout/207192#2071923Answer by coderGeek for What's the best way to truncate a URL so that it fits within a layoutcoderGeek2008-10-16T02:10:35Z2008-10-16T02:10:35Z<p>My preference is to display the most critical components of the URL. This is the file being requested and the domain of the request are what I consider critical, the intermediate path and the query string are things I consider non-critical.</p>
<p>So if you had <a href="http://www.Example.com/archives/2005/08/09/something.html" rel="nofollow">http://www.Example.com/archives/2005/08/09/something.html</a>, I would truncate it as www.Example.com/.../something.html</p>
<p>Of course, there are scenarios where this wont work. Take the URL of this page:</p>
<p><a href="http://stackoverflow.com/questions/206899/whats-the-best-way-to-truncate-a-url-so-that-it-fits-within-a-layout">http://stackoverflow.com/questions/206899/whats-the-best-way-to-truncate-a-url-so-that-it-fits-within-a-layout</a></p>
<p>In this case, I would truncate the last portion of the URL to a reasonable number of characters (preferably breaking on a non-alpha), such as:</p>
<p>stackoverflow.com/.../whats-the-best...</p>
http://stackoverflow.com/questions/206899/whats-the-best-way-to-truncate-a-url-so-that-it-fits-within-a-layout/207376#2073760Answer by for What's the best way to truncate a URL so that it fits within a layout2008-10-16T03:51:28Z2008-10-16T03:51:28Z<p>I would agree by saying start from the middle.</p>
http://stackoverflow.com/questions/206899/whats-the-best-way-to-truncate-a-url-so-that-it-fits-within-a-layout/207708#2077081Answer by PHLAK for What's the best way to truncate a URL so that it fits within a layoutPHLAK2008-10-16T07:45:13Z2008-10-16T07:45:13Z<p>Get rid of the middle, no one needs to know the directory structure of a link. The domain is important and the actual file is important.</p>
<p>Example:</p>
<pre><code>http://www.domainname.com/folder/.../file.php
</code></pre>