Tagged Questions
The ellipsis tag has no wiki summary.
72
votes
5answers
8k views
text-overflow:ellipsis in Firefox 4? (and FF5)
The text-overflow:ellipsis; CSS property must be one of the few things that Microsoft has done right for the web.
All the other browsers now support it... except Firefox.
The Firefox developers have ...
48
votes
3answers
9k views
How do you use the ellipsis slicing syntax in Python?
This came up in Hidden features of Python, but I can't see good documentation or examples that explain how the feature works.
33
votes
15answers
22k views
Insert ellipsis (…) into HTML tag if content too wide
I have a webpage with an elastic layout that changes its width if the browser window is resized.
In this layout there are headlines (h2) that will have a variable length (actually being headlines ...
13
votes
2answers
87 views
“..1” in the body of “[[.data.frame”
When I look at the contents of [[.data.frame on my PC, this is what I get:
> get("[[.data.frame")
function (x, ..., exact = TRUE)
{
na <- nargs() - (!missing(exact))
if ...
12
votes
2answers
1k views
Anybody know a way to use CSS text-overflow on text that's wrapping?
Does anybody know of a way to use {text-overflow: ellipsis;} on a piece of text that's wrapping to a second line?
Adding {whitespace: nowrap;} makes text-overflow work, but I need the text to wrap so ...
11
votes
2answers
188 views
My compiler allows “T&…”. Is this an extension?
I was surprised when the following worked
template<typename T>
void f(T &...);
I thought that I have to declare "T" as "typename ...T" then, and that it only works in C++0x. But the above ...
11
votes
7answers
2k views
Ideal method to truncate a string with ellipsis
I'm sure all of us have seen ellipsis' on Facebook statuses (or elsewhere), and clicked "Show more" and there are only another 2 characters or so. I'd guess this is because of lazy programming, ...
9
votes
2answers
170 views
Ellipsizing a set of names
OK, I'm sure somebody, somewhere must have come up with an algorithm for this already, so I figured I'd ask before I go off to (re)invent it myself.
I have a list of arbitrary (user-entered) ...
9
votes
4answers
1k views
How to use R's ellipsis feature when writing your own function?
The R language has a nifty feature for defining functions that can take a variable number of arguments. For example, the function data.frame takes any number of arguments, and each argument becomes ...
8
votes
6answers
759 views
using catch(…) (ellipsis) for post-mortem analysis
Someone in a different question suggested using catch(...) to capture all otherwise unhandled - unexpected/unforseen exceptions by surrounding the whole main() with the try{}catch(...){} block.
It ...
7
votes
2answers
122 views
replicate and
In the documentation of sapply and replicate there is a warning regarding using ...
Now, I can accept it as such, but would like to understand what is behind it. So I've created this little contrived ...
6
votes
1answer
78 views
Casting pointer-to-function with ellipsis
Consider the following program:
#include <iostream>
typedef void (*fptr)(...);
void foo(fptr func) {
(*func)(12);
}
void bar(int x) {
std::cout << "bar : " << x << ...
6
votes
2answers
198 views
What is the precedence of the meta-operator …?
What is the precedence of the meta-operator ... whose job is to unpack template type parameter packs? I imagine it's pretty low, but how low is it? The C++ standard says:
The precedence of ...
6
votes
4answers
2k views
CSS/JQuery powered sideways scrolling text on hover
I have a twitter feed on a website I run. However, it gets cut off on small screens. I have a bar tall enough for 1 line of text in which I have the latest tweet. I want the tweet to ellipsize or fade ...
6
votes
2answers
4k views
Limit text length to n lines using CSS
Is it possible to limit a text length to "n" lines using CSS (or cut it when overflows vertically).
text-overflow: ellipsis; only works for 1 line text.
original text:
Ultrices natoque mus ...
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 ...
5
votes
1answer
172 views
HTML text-overflow ellipsis detection
I have a collection of block elements on a page. They all have the CSS rules white-space, overflow, text-overflow set so that overflowing text is trimmed and an ellipsis is used.
However, not all the ...
5
votes
2answers
1k views
Ellipsis notation in C#?
Where can I get info about implementing my own methods that have the ellipsis notation,
e.g.
static void my_printf(char* format, ...) { }
Also is that called ellipsis notation or is there a ...
4
votes
1answer
169 views
CSS text-overflow - apply ellipsis if text extends (n)th line
I'm using the following code to to prevent text from overflowing to a new line:
.info-box{
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
height: 3em;
width: 300px;
...
4
votes
1answer
365 views
Is it possible to use text-overflow:ellipsis without the white-space:nowrap rule?
I have a p-tag with a specific width and height. I want to use text-overflow:ellipsis to get ... if the text in the tag is too long. I this possible to solve with css on multiline text?
4
votes
1answer
135 views
Does catch (…) work on throw; with no object?
What does C++ standard say should happen for the following code when there is no pending exception being processed higher up the stack?
try {
throw;
} catch (...) {
cerr << "Caught ...
4
votes
2answers
1k views
Output a hashtable of Arrays in Powershell
I am at my wits end. I am new to powershell and I have tried everything I have been able to find on this subject online. What I am trying to do is print a hashtable of arrays to a file without the ...
4
votes
1answer
595 views
How do I get -moz-binding to work for ellipsis with data:text/xml?
We have a lot of elements on the project I am working on that use ellipsis styles, which, of course, work fine with pure CSS in all major browsers but FireFox. We implemented the -moz-binding fix for ...
4
votes
1answer
804 views
Does throw inside a catch ellipsis (…) rethrow the original error?
If in my code I do the following snippet:
try {
doSomething();
} catch (...) {
doSomethingElse();
throw;
}
Will the throw rethrow the specific exception caught by the default ellipsis ...
3
votes
3answers
85 views
Why do the strings in my collection cut off words?
I'm writing a PowerShell application specifically for Office 365 and I've come across a problem.
var result = pipeline.Invoke();
// close the runspace
runspace.Close();
// convert the script result ...
3
votes
4answers
129 views
Problem with algorithm to shorten sentences
I have a webpage which displays multiple textual entries which have no restriction on their length. They get automatically cut if they are too long to avoid going to a new line. This is the PHP ...
3
votes
3answers
86 views
How to debug the different behavior of the same browser on the different platforms?
I am trying to use the text-overflow: ellipsis technique introduced in this article:
http://mattsnider.com/css/css-string-truncation-with-ellipsis/
which works surprisingly wide across the browsers.
...
3
votes
2answers
439 views
Delphi: How to draw some text in requested width and number of lines, with ending ellipsis?
I need to draw some text in a table cell with fixed width (in pixels) and fixed number of text lines. If the text is clipped by cell rectangle, it must end with ellipsis. The problem is I can't ...
3
votes
1answer
223 views
how to add CharacterEllipsis at the begining of the textblock in wpf?
I have a TextBlock with TextTrimming = TextTrimming.CharacterEllipsis and I want the dots to appear at the beginging. Is there a property for this?
For example if I have the text "123456789ABCDEF" it ...
3
votes
1answer
513 views
How do I detect if a System.Windows.Forms.Label with AutoEllipsis is actually displaying ellipsis?
I have a Windows Forms Application where I display some client data in a Label.
I have set label.AutoEllipsis = true.
If the text is longer than the label, it looks like this:
Some Text
Some longe... ...
2
votes
4answers
169 views
how to handle horizontal ellipsis (three dots) character in XML output through PHP
As mentioned in the question, I am trying to generate an XML output( for an iPhone app) using PHP which is reading the data from MySQL's text field.
Whenever there is a horizontal ellipsis character ...
2
votes
2answers
153 views
MySQL truncate text with ellipsis
Suppose I have a MySQL table of one column: "Message". It is of type TEXT.
I now want to query all rows, but the text can be large (not extremely large but large) and I only want to get a summary of ...
2
votes
1answer
101 views
question about IDLE debugger in Python
This is a simple question, is it possible to view an entire list in the locals box of the IDLE debugger? Because right now, if a list becomes too long, the debugger will put an ellipsis and not show ...
2
votes
3answers
145 views
Usage of … in functions
Where can I find documentation on the usage of ... in functions? Examples would be useful.
2
votes
2answers
148 views
How to insert ellipsis into a large dataset in HTML with the least latency
Insert ellipsis (...) into HTML tag if content too wide mentions how to insert ellipsis into HTML content. This solution works, but I find that when it is applied to a large dataset (imagine 1,000 ...
2
votes
1answer
45 views
How to detect was EllipsisWord applied or not?
In winforms app I use Graphics.DrawString(String, Font, Brush, RectangleF, StringFormat) with StringTrimming.EllipsisWord for the last parameter. How can I know was the String ellipsed by the method ...
2
votes
2answers
299 views
How best to programmatically tell whether a TLabel's Caption is clipped (i.e. drawn using ellipsis)?
I have a TLabel with EllipsisPosition set to epEndEllipsis and I need to be able to tell whether the text is currently clipped or not. Besides calculating the area required to display the text myself ...
2
votes
2answers
429 views
How do I tell if my textview has been ellipsized?
I have a multi-line TextView that has android:ellipsize="end" set. I would like to know, however, if the string I place in there is actually too long (so that I may make sure the full string is shown ...
2
votes
2answers
329 views
What is ellipsis operator in c [closed]
Possible Duplicate:
What's does … mean in an argument list in C ?
function fun1(...)
{
}
Please tell me about what is the use and how to use ellipsis operator in c.
...
2
votes
2answers
361 views
Unpacking argument lists for ellipsis in R
I am confused by the use of the ellipsis (...) in some functions, i.e. how to pass an object containing the arguments as a single argument.
In Python it is called "unpacking argument lists", e.g.
...
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 ...
2
votes
2answers
796 views
C# Path Ellipsis without Win32 API call
I have a long path I'd like to shorten for displaying on a form using the ellipsis character(s?).
I know there is the PathCompactPathEx Win32 API call, but I know there is a built-in .NET equivalent. ...
2
votes
4answers
863 views
Trim text to 340 chars
I'm pulling blog posts from a DB. I want to trim the text to a max length of 340 characters.
If the blog post is over 340 characters I want to trim the text to the last full word and add '...' on ...
1
vote
0answers
114 views
Multi-line text-overflow:ellipsis in CSS or JS, with img tags
I tried using :
text-overflow ellipsis feature in CSS3 (but doesn't support multi-line)
several jquery plugins like dotdotdot (http://dotdotdot.frebsite.nl/)
jquery autoellipsis ...
1
vote
1answer
63 views
text-overflow: ellipsis problems in internet explorer
I'm trying to shorten the length of columns in a certain table.
I'm using some jQuery to add text-overflow ellipsis and a few more css properties. I also add a tooltip using some more jQuery.
Here's ...
1
vote
1answer
139 views
jQuery - Add Ellipses, Break Line, But Do Not Truncate
I would like to add ellipses to dynamic text contained within a scrollable div. However, I don't want the text to be truncated. I want the ellipses to be added, and then the text to continue on the ...
1
vote
1answer
250 views
Adding a read more link to jQuery Autoellipsis? (Autoellipsis adds the “…” at the end of text with fixed height)
I'm using a jQuery Plugin called Autoellipsis.
It adds the "..." at the end of text with fixed height.
For example:
With ellipsis and height:
<div style="height 20px;">
Lorem ipsum ...
1
vote
2answers
82 views
C - Passing va_list to a sentinel-terminated function - need wrapper for execlp()
I am trying to write a wrapper for execlp().
Why doesn't this work? Is it the sentinel?
int vExeclp(const char *file, const char *arg, va_list argptr)
{
int returnValue = 0;
returnValue = ...
1
vote
2answers
115 views
Java JNI and ellipsis mess
I have a function in c that adds a row to a table. The function takes as arguments various orderings of ints, floats, and strings by using an ellipsis add_row(int arg1, int arg2, ...) and parses this ...