Tagged Questions
7
votes
5answers
6k views
smart way to shorten long strings with javascript
Does anyone have a more sophisticated solution/library for shortening strings with JavaScript, than the obvious one:
if(string.length > 25) {
string = string.substring(0,24)+"...";
}
5
votes
3answers
61 views
How to correctly make an utf8 string shorter in PHP
I have some strings in my PHP code that need to be shortened if they are too long.
For example if a text is something like this:
Hi, I would like to tell you how wonderful this is.
It would ...
3
votes
5answers
4k views
jQuery: shorten string length to fit a set width
I have a table, and in each cell I want to place strings, but they are much wider than the cell width. To prevent line break, I would like to shorten the strings to fit the cell, and append '...' at ...
2
votes
4answers
112 views
c# Shorten int into case sensitive code
There are 26 characters in the alphabet (abc..yz) and 10 digits (0..9). That gives us a lexicon of 62 characters to use if we go case sensitive.
At the moment we are building a part of a filename ...
2
votes
5answers
393 views
javascript/php - shorten string to fit into a certain # of lines
I have a string that must fit into a box, and must be at most 3 lines long. To shorten it, I plan to truncate it and end it with '...'. I could shorten it to a certain # of characters but if i make it ...