Top "Truncation" questions

The process of shortening data by discarding a portion of it.

How can I mimic text-overflow: ellipsis in Firefox?

I have some dynamic text contained in a div that is set to whatever a user enters in a textbox …

javascript html string truncation css
How to truncate text in HTML

I have an HTML email (with the following HTML in it) to be sent to our user base, the email …

html html-email truncation
SSIS string truncation error

I have a SQL Server 2005 SP2 database which has a table with a poc_resp_city attribute which is nvarchar(35). …

sql-server-2005 ssis truncation
Python not writing full string to file

I am attempting to output an aligned protein sequence to a file, however, the output string is truncated each time …

python file-io dictionary sequence truncation
com.mysql.jdbc.MysqlDataTruncation: Data truncation: Truncated incorrect DOUBLE value: ',3'

I'm trying to write a shop plugin for my Minecraft server, but I keep getting an error whenever anyone does …

java mysql jdbc truncation
How to change truncate characters in UILabel?

When the text of a UILabel gets truncated there are 3 dots inserted by default. Is it possible to change these …

iphone uilabel truncation
Importing CSV to SQL Server with text column > 8000 characters

I'm trying to import a csv file with two columns (sku, description) into SQL Server 2008 using the SQL Server management …

sql-server import ssms sqldatatypes truncation
Why is T-SQL ISNULL() truncating the string and COALESCE is not?

Given the following: SELECT ISNULL('XY' + NULL, 'ABCDEFGHIJ') -- Outputs ABC (Why?) SELECT COALESCE('XY' + NULL, 'ABCDEFGHIJ') -- Outputs ABCDEFGHIJ …

sql-server tsql coalesce isnull truncation