Tagged Questions
The leading tag has no wiki summary.
8
votes
4answers
2k 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. ...
6
votes
2answers
644 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 ...
3
votes
4answers
145 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 ...
3
votes
2answers
2k 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 ...
3
votes
6answers
2k 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>
...
3
votes
4answers
653 views
Leading Remote Development Teams [closed]
I'm now in the position that I am leading 2 remote development teams, some in India, some in the USA (I'm based in Scotland) and was looking for some advice and wisdom what will help make me more ...
2
votes
1answer
152 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 ...
2
votes
2answers
643 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
415 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 ...
2
votes
5answers
5k 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 ...
2
votes
4answers
282 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 ...
1
vote
2answers
61 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
463 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
144 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
4answers
198 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 ...
1
vote
1answer
272 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 ...
1
vote
2answers
267 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%)
...
0
votes
1answer
78 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 ...
0
votes
5answers
231 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, ...
0
votes
2answers
1k 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 ...
-1
votes
4answers
138 views
java long parse leading zero
Long story short: (in Java)
String input= "0888880747;
long convert = Long.parseLong(input);
The value of convert is now: 888880747
How can I parse the string to a long but retain the leading ...