The format tag has no wiki summary.
33
votes
5answers
18k views
How to nicely format floating types to String?
An 64-bit double can represent integer +/- 253 exactly
Given this fact I choose to use a double type as a single type for all my types, since my largest integer is unsigned 32-bit.
But now I have to ...
29
votes
11answers
37k views
Android TextView Justify Text
How do you get the text of a TextView to be Justified (with text flush on the left- and right- hand sides)?
I found a possible solution here, but it does not work (even if you change vertical-center ...
24
votes
6answers
51k views
How do you format date and time in Android?
How do you format correctly according to the device configuration a date and time when having year, month, day, hour and minute?
23
votes
8answers
14k views
How do I render a partial of a different format in Rails?
I'm trying to generate a JSON response that includes some HTML. Thus, I have /app/views/foo/bar.json.erb:
{
someKey: 'some value',
someHTML: "<%= h render(:partial => '/foo/baz') -%>"
}
...
19
votes
6answers
21k views
Python format timedelta to string
I'm a python newbie (2 weeks) and I'm having trouble formatting a datetime.timedelta object.
Here's what I'm trying to do. I have a list of objects and one of the members of the class of the object ...
18
votes
4answers
16k views
Python string Formatting
I have a string of this form
s='arbit'
string='%s hello world %s hello world %s' %(s,s,s)
All the %s in string have the same value (i.e. s).
Is there a better way of writing this? (Rather than ...
15
votes
8answers
18k views
Java based OCR SDK/API
Are there any good OCR (optical character recognition) SDK or APIs in Java which will be able to convert TIFF files to txt files (or even html is good enough) with some sort of format retention? The ...
14
votes
2answers
2k views
Ruby strftime: Month without leading zero?
Does Ruby's strftime have a format for the month without a leading zero?
I found %e for getting the day without the leading zero, but not having any luck with the month.
Ultimately wanting a date ...
13
votes
3answers
140 views
Objective-C: format numbers to ordinals: 1, 2, 3, .. to 1st, 2nd, 3rd
In Objective C, is there any way to format an integer to ordinals
1 => "1st", 2 => "2nd" etc... that works for any language?
So if the user is French he will see "1er", "2ieme" etc..
Thanks a lot!
...
13
votes
5answers
11k views
Add comma to numbers every three digits using jQuery
jQuery plugin to add comma separating numbers into three digits without white spaces and if total digits are under three, then no comma added.
Ex. 2984 => 2,984 and 297312984 => 297,312,984 and 298 ...
12
votes
4answers
468 views
What float value makes sprintf_s() produce “1.#QO”?
I have some (legacy embedded c) code which produces a .csv file by means of some sprintf calls. Occasionally I see values of 1.#QO. I've tried reproducing those values with conditions which should ...
12
votes
1answer
2k views
Boost.format and wide characters
Is there a way to get boost.format to use and return wide (Unicode) character strings?
I'd like to be able to do things like:
wcout << boost::format(L"...") % ...
and
wstring s = ...
11
votes
5answers
243 views
How to format a date in C# by example?
C# provides a lot of flexibility when formatting a DateTime object for a string representation, however, one has to know all format strings to use that flexibility.
If you want to display a date in ...
11
votes
4answers
574 views
Is COLLADA a dead format?
I've been reading lots of musings on the net that COLLADA is a dead file format? In that applications are not updating their support for it etc. Is this true? It was originally designed to be a format ...
11
votes
3answers
1k views
Using printf with a non-null terminated string
Suppose you have a string which is NOT null terminated and you know its exact size, so how can you print that string with printf in C? I recall such method but I can not find out know...
11
votes
5answers
1k views
What's the point of XPS?
When I read books about WPF, I saw the authors mention XPS like it was something important. Windows also includes its XPS viewer, and I've seen that listed as a "feature" of Windows.
But why? What's ...
10
votes
1answer
175 views
Vertical align floats on decimal dot
Is there a simple way to align on the decimal dot a column of floats? In other words, I would like an output like the one of (vertical bars '|' are there only for clarity purpose)
(format t ...
10
votes
2answers
3k views
Format file size as MB, GB etc
I need to display a file size as String using sensible units.
e.g.
1L ==> "1 B";
1024L ==> "1 KB";
2537253L ==> "2.3 MB"
etc.
I found this previous answer, which I didn't find ...
10
votes
9answers
8k views
How to format the value in a strongy typed view when using ASP.Net MVC's Html.TextBoxFor
I am trying to format a date rendered by ASP.Net MVC's TextBoxFor using the value of a strongly typed view. The date is nullable so if it is null I want to see a blank value, otherwise I want to see ...
9
votes
3answers
3k views
How does one align code (braces, parens etc) in vi?
How do you prettify / align / format code in vi? What is the command?
I have pasted in a hunk of code and I need to have it all formatted/aligned... obviously I am a vi neophyte.
x
9
votes
6answers
13k views
AttributeError: 'str' object has no attribute 'format'
I am using Python 2.5.2
>>> for x in range(1,11):
print '{0:2d} {1:3d} {2:4d}'.format(x, x*x, x*x*x)
Traceback (most recent call last):
File "<pyshell#9>", line 2, in ...
9
votes
3answers
3k views
FIle format of eclipse workspace files
Is there a (good) documentation about the format of the eclipse workspace files (.location, x.tree, ...)?
I need this to programatically create a workspace for automated builds. Unfortunately I have ...
9
votes
6answers
12k views
C++: how to get fprintf results as a std::string w/o sprintf
I am working with an open-source UNIX tool that is implemented in C++, and I need to change some code to get it to do what I want. I would like to make the smallest possible change in hopes of getting ...
9
votes
15answers
5k views
8
votes
3answers
3k views
warning: format not a string literal and no format arguments
I want to remove the warning that i get on this line of the code,
FILE *fil;
char *imp;
(...)
fprintf(fil,imp);
the thing is when i do this it writes on the file exactly what i want, but if i ...
8
votes
2answers
680 views
Common Lisp's equivalent of \r inside the format function?
Basically, I'd like to do the following, only using Common Lisp instead of Python:
print("Hello world.\r\n")
I can do this, but it only outputs the #\newline character and skips #\return:
(format ...
8
votes
2answers
561 views
How to display locale sensitive time format without seconds in python
I can output a locale sensitive time format using strftime('%X'), but this always includes seconds. How might I display this time format without seconds?
>>> import locale
>>> ...
8
votes
3answers
6k views
PHP Function Comments
Just a quick question: I've seen that some PHP functions are commented at the top, using a format that is unknown to me:
/**
*
* Convert an object to an array
*
* @param object $object The ...
8
votes
2answers
4k views
print spaces with String.format()
how I can rewrite this:
for (int i = 0; i < numberOfSpaces; i++) {
System.out.print(" ");
}
using String.format()?
PS
I'm pretty sure that this is possible but the javadoc is a bit ...
8
votes
3answers
3k views
cout Formatting
I'm pretty sure this is a simple question in regards to formatting but here's what I want to accomplish:
I want to output data onto the screen using cout. I want to output this in the form of a ...
7
votes
2answers
351 views
Regex: how to find the maximum integer value of a pattern?
Imagine I have the following string:
"I'll have some %1%, some %42% and maybe some %5% as well."
Basically, I am interested in knowing the maximum integer value that follow the pattern %(integer)%. ...
7
votes
8answers
10k views
T-SQL Format integer to 2-digit string
I can't find a simple way to do this in T-SQL.
I have for example a column (SortExport_CSV) that returns an integer '2' thru 90.
If the stored number is a single digit, I need it to convert to a 2 ...
7
votes
4answers
9k views
Convert a String to Number - Java
What is the easiest and correct way to convert a String number with commas (for example: 835,111.2) to a Double instance.
Thanks,
Rod
7
votes
9answers
2k views
How does the .doc format work?
I recently learned about the basic structure of the .docx file (it's a specially structured zip archive). However, docx is not formated like a doc.
How does a doc file work? What is the file ...
7
votes
11answers
6k views
Parse DICOM files in native Python
What is the simplest and most-pythonic way to parse a DICOM file?
A native Python implementation without the use of non-Python libraries would be much preferred. DICOM is the standard file format in ...
6
votes
1answer
134 views
Oracle to_char bug
I don't know if it's a bug or what, but when I try to format the Day of the week in a certain way with the to_char function in Oracle, SQL Plus give me this error : ORA-01821: date format not ...
6
votes
2answers
768 views
best time date format for R [closed]
Possible Duplicate:
Which R time/date class and package to use?
Hello,
I want to use a time date format for R, but there are so many packages that have their own format that I am a bit ...
6
votes
2answers
383 views
How can I change DecimalFormat behavior based on input length?
I am using the following DecimalFormat pattern:
// Use ThreadLocal to ensure thread safety.
private static final ThreadLocal <NumberFormat> numberFormat =
new ThreadLocal ...
6
votes
1answer
209 views
How do I choose a good magic number for my file format?
I am designing a binary file format from scratch, and I would like to include some magic bytes at the beginning so that it can be identified easily. How do I go about choosing which bytes? I am not ...
6
votes
5answers
184 views
string format in C#
I have value ranging from 1 to 10000000.
After value 10000 i need to show values as 1E6,1E7,1E8,....
How to set this in string.Format ?
Thanks to all for replying.
Now i am able to display ...
6
votes
1answer
98 views
When does format actually print in Common Lisp?
I have the following Common Lisp code:
(defun micro-read-eval-print ()
(format t "Micro > ")
(let ((form (read-line)))))
When I run it, I get the following:
CL-USER> ...
6
votes
3answers
5k views
BitmapFactory.decodeByteArray() is returning NULL
I am using the previewCallback from the camera to try and grab images. Here is the code I am using
private Camera.PreviewCallback mPrevCallback = new Camera.PreviewCallback()
{
public void ...
6
votes
3answers
167 views
binary16 in Python
The struct module is useful when you're trying to convert data to and from binary formats. However, recently I came across a file format specification that uses the binary16 floating point format. I ...
6
votes
3answers
790 views
How to convert yyyy-MM-dd HH:mm:ss to “15th Apr 2010” using PHP
I have the following date format: 2010-04-15 23:59:59
How would I go about converting this into: 15th Apr 2010
Thanks
6
votes
1answer
793 views
How to give a input date format in iphone
i am new to iphone development. In my input date format is "2010-03-05T18:20:40Z", and i donno to how to give a input format of my code.So i have mentioned in my code (?).
input date format = ...
6
votes
5answers
1k views
ISO-8601 week numbering vs “Outlook” numbering in PHP
I recently came across a big problem, as I have a system that's paying the customers weekly.
As we all know, a year has 52 weeks, and there are standards for it. I'm using PHP aka date('W') to get ...
6
votes
5answers
7k views
Convert one date format into another in PHP
Is there a simple way to convert one date format into another date format in PHP?
I have this:
$old_date = date('y-m-d-h-i-s'); // works
$middle = strtotime($old_date); // ...
6
votes
3answers
397 views
String has how many parameters
Before using String.Format to format a string in C#, I would like to know how many parameters does that string accept?
For eg. if the string was "{0} is not the same as {1}", I would like to know ...
6
votes
4answers
1k views
Difference between format specifiers %i and %d in printf
What is the difference between %d and %i when used as format specifiers in printf?
6
votes
7answers
9k views
Set Default DateTime Format c#
Is there a way of setting or overriding the default DateTime format for an entire application. I am writing an app in C# .Net MVC 1.0 and use alot of generics and reflection. Would be much simpler ...