The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
3answers
59 views

Incrementing a number and adding a leading zero in bash

The problem is with the numbers 08 and 09. I've Googled this and found out the reason that 08 and 09 are problematic, but no solution. This is a nonsensical example used to briefly describe my ...
0
votes
0answers
26 views

How to calculate leading space from Word 2007

I need to calculate the leading from a paragraph in Word 2007. I've researched a lot and I know that the leading in Word 2007 of a paragraph can be found in the "line" attribute of the xml. If the ...
0
votes
0answers
25 views

Leading underscores outside of the Standard Library [duplicate]

Operator< and strict weak ordering Of course you shouldn't actually use that code (at least without first renaming the variables). Leading underscores are bad outside the standard library ...
1
vote
1answer
365 views

Responsive Web Typography (for line-height calculation in ems) Code Explanation Needed

Thank you in advance for your assistance. I am attempting to understand the CSS calculation process that went into the following CSS stylings. The code comes from a responsive Wordpress theme, and I ...
0
votes
0answers
67 views

Aqua Data Studio's “import data” ignores leading blanks in varchar

I'm using Aqua Data Studio 4.7.2 to access an Informix DB (I can't use any other tool), I have to import data that's in an "unload" file. Here's a piece of that file: 2701|201100376|7|2.C ...
3
votes
2answers
217 views

case insensitive string comparison in bash

The following line removes the leading text before the variable $PRECEDING temp2=${content#$PRECEDING} But now i want the $PRECEDING to be case-insensitive. This works with sed /'I. But i can't ...
0
votes
8answers
86 views

Php - remove all 0s except trailing 0s from a string

There are a lot of questions on removing leading and trailing 0s but i couldn't find a way to remove all 0s except trailing 0s (leading 0 or in any other place other than the end). 100010 -> 110 ...
0
votes
1answer
145 views

Tool to remove leading/trailing spaces in HTML files?

I have searched but could not find anything similar to what I need. I am looking for a tool that is capable of removing leading/trailing spaces in my HTML files which also have embedded JavaScript. ...
4
votes
3answers
1k views

How to remove leading and trailing zeros in a string? Python

I have several alphanumeric strings like these listOfNum = ['000231512-n','1209123100000-n00000','alphanumeric0000', '000alphanumeric'] The desired output for removing trailing zeros would be: ...
0
votes
2answers
47 views

SUBSTR twice in MySQL statement;

So my responses are of the pattern.. "Congratulations! You have won a Panasonic Sound System in the *. Our call centre will contact you on ***." What I need is to select only the prize (in this case ...
0
votes
1answer
72 views

How to set leading in TextBox?

I have a TextBox control with some text. I want to modify this: link in that TextBox. How to do this?
0
votes
2answers
82 views

Keeping leading 0 when getting a form value with JQuery?

I keep loosing my leading 0 from a phone number field on my user sign-up form. I use JQuery to get the value of the fields, then send them to a processing page via Get. Any help would be ...
1
vote
2answers
98 views

Keeping leading zeros using RODBC

I am trying to import data from an Access database into R. I would like to import the CIP codes for some majors, which can contain leading zeros. RODBC is converting the CIP code to a numeric value ...
1
vote
1answer
117 views

How to Calculate Leading in PDF Document

How do I calculate leading in a PDF document? For example: 48 0 0 48 72 677.28 Tm (Hello World) Tj 0 -1.1075 TD This renders the text Hello World at 48pt/57.6pt (120% line height) in Times-Roman. ...
3
votes
2answers
591 views

sed delete remaining characters in line except first 5

what would be sed command to delete all characters in line except first 5 leading ones, using sed? I've tried going 'backwards' on this (reverted deleting) but it's not most elegant solution.
3
votes
1answer
578 views

Giving Framesetter the correct line spacing adjustment

Several posts have noted difficulties with getting an exact height out of CTFramesetterSuggestFrameSizeWithConstraints, and here, (framesetter post), @Chris DeSalvo gives what looks like the ...
0
votes
2answers
485 views

Removing leading zeros in SSIS

I process data from a legacy system with SSIS before importing data into a SQL Server 2008 db. A currency field is so formatted: 000000xxx.xx I need to remove the leading zeros. Note that the ...
5
votes
3answers
2k views

Traditional leading and CSS line-height

CSS specification states that line-height should be applied to text by dividing the specified value by two and applying the result above and below a line of text. This varies significantly from the ...
0
votes
1answer
572 views

Building a countdown clock in JavaScript

I'm building a countdown clock in JavaScript and am having trouble formatting it exactly how I want. Basically, I have a variable called totalTime which is initially set to the total number of seconds ...
2
votes
1answer
806 views

SAS proc import missing leading zero

I am trying to import numbers from csv file to sas dataset with proc import ( SAS ) , but all my leading zero are disappear after the import. For example, '0123456' after import I would get only ...
1
vote
2answers
120 views

MySQL leading whitespace with C#

When I update a field in my MySQL database, it always adds a whitespace to the value. I tried to remove the whitespace with the trim-command and the replace-command. Neither of them worked. So I ...
1
vote
9answers
1k views

Remove leading zero and delimiter char for BigDecimal

Our application can get following numbers: 0.1 0.02 0.003 etc. These values treated by our code as BigDecimal,as far we operate with money. There is form on web UI, where user should view these ...
1
vote
3answers
2k views

How Do I Trim Leading and Trailing Quote from MySQL Row?

I have a MySQL table that I have imported from a CSV file. In this process, a bunch of the entries have quote marks leading and trailing the entry of several data rows. For example the the table ...
1
vote
5answers
842 views

How to keep leading zero in a timetable

I've got a selection of times, but I want to keep the leading zero: var fastTrainReading = [0943, 0957, 1006, 1013 , 1027, 1036, 1043, 1057, 1106, 1113, 1127, 1136, 1213, 1227, 1236, 1243, 1257, ...
19
votes
2answers
7k views

adding leading zeros using R

I have a set of data in which looks something like this: anim <- c(25499,25500,25501,25502,25503,25504) sex <- c(1,2,2,1,2,1) wt <- c(0.8,1.2,1.0,2.0,1.8,1.4) data <- ...
2
votes
1answer
878 views

iOS Fonts and (Alleged) Extra Leading

A recent project has called for the use of two Hiragino fonts on iOS 4.x (HiraKakuProN-W3 and -W6) ... but they appear to have some extra space (at least below the characters A-Za-z0-9, which is what ...
4
votes
4answers
1k views

What directive can I give a stream to print leading zeros on a number in C++?

I know how to cause it to be in hex: unsigned char myNum = 0xA7; clog << "Output: " std::hex << int(myNum) << endl; // Gives: // Output: A7 Now I want it to always print a ...
5
votes
3answers
3k views

SQLite function to format numbers with leading zeroes?

I’ve got an SQLite database that will need to contain products. Those products have a fixed-format composite product number, consisting of category, group and product number (cccccc.gg.ppp). Every ...
3
votes
3answers
4k views

Calculating / Faking Line Height Changes in UILabel

Hey everyone - so I've discovered its impossible to modify the line height in a UILabel. Bummer. Also - it seems that the custom fonts i've chosen for use do not use their own default line heights ...
5
votes
6answers
6k views

Trim leading/trailing whitespace from textarea using jQuery?

following code is an example of text placed into a textarea from a database. <textarea id="inputPane" cols="80" rows="40" class="pane"> <p> some text here... </p> <p> ...
1
vote
1answer
376 views

iPad/iphone font leading and kerning

I've searched on the Internet but can't find definite details. Is there anyway to specify leading and keening for uilabels, textfields or textviews? I could create custom fonts for each leading and ...
21
votes
8answers
17k views

Cocoa - Trim all leading whitespace from NSString

(have searched, but not been able to find a simple solution to this one either here, or in Cocoa docs) Q. How can I trim all leading whitespace only from an NSString? (i.e. leaving any other ...
1
vote
2answers
404 views

Flex TextArea leading invalid

When I set leading to 0 with Verdana (and others to) for a Flex TextArea I get strange results: fontsize -> space between baselines 8 -> 10 (125%) 10 -> 12 (120%) 12 -> 14 (117%) 14 -> 17 (121%) ...
9
votes
4answers
4k views

Get rid of leading zeros for date strings in Python?

Is there a nimble way to get rid of leading zeros for date strings in Python? In the example below I'd like to get 12/1/2009 in return instead of 12/01/2009. I guess I could use regular expressions. ...
4
votes
4answers
857 views

Remove Leading Whitespace from File

My shell has a call to 'fortune' in my .login file, to provide me with a little message of the day. However, some of the fortunes begin with one leading whitespace line, some begin with two, and some ...
6
votes
2answers
954 views

How do I calculate PDF leading from TTF?

The PDF specification defines a text operator called ' (apostrophe). The definition is that it writes out some text, and moves to the next line based on the current leading state. The current ...
15
votes
6answers
16k views

Truncate leading zeros of a string in Javascript

I have a textbox in Javascript. When I enter '0000.00' in the textbox, I want to know how to convert that to only having one leading zero, such as '0.00'.