Tagged Questions

6
votes
4answers
2k views

Ellipsis at start of string in WPF ListView

I have a WPF ListView (GridView) and the cell template contains a TextBlock. If I add: TextTrimming="CharacterEllipsis" TextWrapping="NoWrap" on the TextBlock, an ellipsis will appear at the end of my ...
2
votes
1answer
187 views

Cutting down a length of a PHP string and inserting an ellipses

I want to turn a long string like reallyreallyreallyreallyreallylongfilename into something like reallyreallyre...yreallyreally. Basically, find the middle of the string and replace everything there ...
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 ...
0
votes
1answer
436 views

Ellipsis with C# (ending on a full word)

I'm trying to implement ellipsis in Umbraco, the requirement being 15 characters of intro text but always ending on a full word. I thought of using XSLT, but then realised that I can use a simple ...
0
votes
1answer
582 views

PHP inserting ellipsis in the middle(!) of a string?

I am working on a PHP forum software (FluxBB) and a user encountered a rather interesting error, that - so it seems - PHP is inserting an ellipsis in the middle of a string. Due to a similar error I ...