Commonly refers to a number of methods to display an arbitrary number of varied data types into a string.
51
votes
12answers
10k views
Named string formatting in C#
Is there any way to format a string by name rather than position in C#?
In python, I can do something like this example (shamelessly stolen from here):
>>> print '%(language)s has %(#)03d ...
36
votes
9answers
24k views
Warning: “format not a string literal and no format arguments”
Since upgrading to the latest Xcode 3.2.1 and Snow Leopard, I've been getting the warning
"format not a string literal and no format arguments"
from the following code:
NSError *error = nil;
...
20
votes
6answers
18k views
Display number with leading zeros
Given:
a = 1
b = 10
c = 100
I want to display a leading zero for all numbers with less than 2 digits.
Essentially displaying
01
10
100
17
votes
3answers
195 views
String formatting options: pros and cons
These are two very popular ways of formatting a string in Python. One is using a dict:
>>> 'I will be %(years)i on %(month)s %(day)i' % {'years': 19, 'month': 'January', 'day': 23}
'I will ...
17
votes
6answers
3k views
Python string formatting: % vs. .format
Python 2.6 introduced the string.format() method with a slightly different syntax from the existing % operator. Which is better and for what situations?
The following uses each method and has the ...
17
votes
8answers
13k views
In C#, what is the best method to format a string as XML?
I am creating a lightweight editor in C# and would like to know the best method for converting a string into a nicely formatted XML string. I would hope that there's a public method in the C# library ...
16
votes
1answer
15k views
The correct Javascript Date.parse(…) format string?
What is a culture-invariant way of constructing a string such that the Javascript Date() constructor can parse it and create the proper date object?
I have tried these format strings which don't work ...
16
votes
2answers
4k views
Custom numeric format string to always display the sign
Is there any way I can specify a standard or custom numeric format string to always output the sign, be it +ve or -ve (although what it shoudl do for zero, I'm not sure!)
14
votes
5answers
5k views
String.Format an integer to use a thousands separator without decimal places or leading 0 for small integers
Silly question, I want to format an integer so that it appears with the 1000's separator (,), but also without decimal places and without a leading 0.
My attempts so far have been:
...
13
votes
1answer
197 views
String.format() value in statusstrip label displayed differently on Win 7 vs Win XP
I am using the following code to display the elapsed time of a task in the status bar in my application.
public void DisplayDuration(TimeSpan duration)
{
string formattedDuration;
if ...
13
votes
2answers
793 views
When to use %r instead of %s in Python?
On Learn Python the Hard Way (http://learnpythonthehardway.org/) page 21, I see this code example:
x = "There are %d types of people." % 10
...
print "I said: %r." % x
Why is %r used here instead ...
11
votes
3answers
144 views
Decimal stores precision from parsed string in C#? What are the implications?
During a conversation on IRC, someone pointed out the following:
decimal.Parse("1.0000").ToString() // 1.0000
decimal.Parse("1.00").ToString() // 1.00
How/why does the decimal type retain precision ...
9
votes
5answers
201 views
Can I format NULL values in string.Format?
I was wondering if there's a syntax for formatting NULL values in string.Format, such as what Excel uses
For example, using Excel I could specify a format value of {0:#,000.00;-#,000.00,NULL}, which ...
9
votes
3answers
7k views
Output in a table format in Java's System.out
I'm getting results from a database and want to output the data as a table in Java's standard output
I've tried using \t but the first column I want is very variable in length.
Is there a way to ...
9
votes
4answers
6k views
Objective c formatting string for boolean?
What formatter is used for boolean values?
EDIT:
Example: NSLog(@" ??", BOOL_VAL);, what is ?? ?
9
votes
3answers
6k views
Actionscript 3.0 String With Format?
How can i format a string with supplied variables in AS3?
//vars
var myNumber:Number = 12;
var myString:String = "Months";
var myObject:MovieClip = year;
//string
myString.txt = "One (?) consists of ...
9
votes
7answers
10k views
How to create a NSString from a format string like @“xxx=%@, yyy=%@” and a NSArray of objects?
Is there any way to create a new
NSString from a format string like @"xxx=%@, yyy=%@" and a NSArray of objects?
In the NSSTring class there are many methods like:
- (id)initWithFormat:(NSString ...
9
votes
7answers
13k views
Best way to format integer as string with leading zeros?
I need to add leading zeros to integer to make a string with defined quantity of digits ($cnt).
What the best way to translate this simple function from PHP to Python:
function add_nulls($int, ...
9
votes
7answers
12k views
Format numbers to strings in Python
I need to find out how to format numbers as strings. My code is here:
return str(hours)+":"+str(minutes)+":"+str(seconds)+" "+ampm
Hours and minutes are integers, and seconds is a float. the str() ...
8
votes
3answers
88 views
Rounding decimals in nested data structures in Python
I have a program which deals with nested data structures where the underlying type usually ends up being a decimal. e.g.
x={'a':[1.05600000001,2.34581736481,[1.1111111112,9.999990111111]],...}
Is ...
8
votes
3answers
315 views
How to format message with argument names instead of numbers?
I have something like:
String text = "The user {0} has email address {1}."
// params = { "Robert", "rhume55@gmail.com" }
String msg = MessageFormat.format(text, params);
This isn't great for me, ...
8
votes
7answers
489 views
How do I add left-padded zeros to a number in Java?
I have an integer 100, how do I format it to look like 00000100 (always 8 digits long)?
8
votes
5answers
5k views
Named placeholders in string formatting
In Python, when formatting string, I can fill placeholders by name rather than by position, like that:
print "There's an incorrect value '%(value)s' in column # %(column)d" % \
{ 'value': x, ...
8
votes
3answers
880 views
Why does .Net use a rounding algorithm in String.Format that is inconsistent with the default Math.Round() algorithm?
I've noticed the following inconsistency in C#/.NET. I was wondering why it is so.
Console.WriteLine("{0,-4:#.0} | {1,-4:#.0}", 1.04, Math.Round(1.04, 1));
Console.WriteLine("{0,-4:#.0} | ...
8
votes
4answers
589 views
Should we store format strings in resources?
For the project that I'm currently on, I have to deliver specially formatted strings to a 3rd party service for processing. And so I'm building up the strings like so:
string someString = ...
7
votes
2answers
126 views
Why does Python store German and Spanish (and other?) time format strings as %T in the locale module?
I'm writing a test for a program that will be used in multiple locales. While running the test in German, i got the error
Traceback (most recent call last):
File "<stdin>", line 1, in ...
7
votes
4answers
307 views
Why does String.Format convert a forward slash into a minus sign?
Why does String.Format("/") get converted to "-"?
7
votes
3answers
384 views
Formatting a string with string.Format(“{0:00}”
I have just taken over some code and I see this used a lot. It seems to take the integer and create a string looking like "01", "02" etc.
What I am not sure of is the convention used here. Why is ...
7
votes
2answers
517 views
Negative currency number XAML
I have a little problem with the current format of my negative currency number.
Here's a screenshot resuming my situation.
This is how I'm using the StringFormat in my binding. (BTW, I tried only ...
7
votes
7answers
844 views
Clever way to append 's' for plural form in .Net (syntactic sugar)
I want to be able to type something like:
Console.WriteLine("You have {0:life/lives} left.", player.Lives);
instead of
Console.WriteLine("You have {0} {1} left.", player.Lives, player.Lives == 1 ? ...
7
votes
2answers
4k views
boolean string formatting in Python?
I see I can't do:
"%b %b" % (True, False)
in Python. I guessed %b for b(oolean). Is there something like this?
7
votes
8answers
703 views
What should I use instead of printf in Perl?
I need to use some string replacement in Perl to ease translations, i.e. replace many
print "Outputting " . $n . " numbers";
by something like
printf ("Outputting %d numbers", $n);
However, I'd ...
6
votes
2answers
130 views
C++ printf with %f but localized for the user's country
I'm using the following C++ syntax to output a floating point value on a Windows platform:
printf("%.2f", 1.5);
It works well if I run it on an English user account. My assumption was that if I run ...
6
votes
1answer
132 views
What are some good non-English phrases with singular and plural forms that can be used to test an internationalization and localization library?
I've been working on a .NET library to assist with internationalization of an application. It's written in C#, called SmartFormat, and is open-source on GitHub.
It contains Grammatical Number rules ...
6
votes
7answers
262 views
Longest common prefix of two strings in bash
I have two strings. For the sake of the example they are set like this:
string1="test toast"
string2="test test"
What I want is to find the overlap starting at the beginning of the strings. With ...
6
votes
1answer
95 views
In Java, is the immutability of Strings considered in the implementation of String.format()?
Since Strings in Java are immutable, I've always used StringBuilder or StringBuffer to concatenate Strings. Does the String.format() method handle this issue as well as StringBuilder or StringBuffer? ...
6
votes
6answers
216 views
String.Format to get “2.4k” from “2400”
Is there a way to use String.Format to convert numbers to number/character representations.
For example
2400 -> 2.4k
2,600,000 -> 2.6m
6
votes
3answers
346 views
Visual Studio add-in for validating string.Format method
string.Format is a very risky method. There are a lot of thing that could go wrong, without any compilation errors:
string.Format("{0{", text);
string.Format("{1}", text);
string.Format("(0)", text);
...
6
votes
3answers
431 views
“%s” % format vs “{0}”.format() vs “?” format
In this post about SQLite, aaronasterling told me that
cmd = "attach \"%s\" as toMerge" % "b.db" : is wrong
cmd = 'attach "{0}" as toMerge'.format("b.db") : is correct
cmd = "attach ? as toMerge"; ...
6
votes
4answers
2k views
How to format a string to camel case in XSLT?
I'm trying to format strings in XSLT that needs to be in camel case to be used appropriately for the application I'm working with.
For example:
this_text would become ThisText
this_long_text would ...
6
votes
4answers
1k views
Using .NET string formatting, how do I format a string to display blank (empty string) for zero (0)?
I am using a DataBinder.Eval expression in an ASP.NET Datagrid, but I think this question applies to String formatting in .NET in general. The customer has requested that if the value of a string is ...
6
votes
2answers
337 views
Workout the string format used for DateTime formatting
I have a string which represents a DataTime value, and I want to workout what string format was used to create the string.
For example
- Given "Wednesday 27 Jan 2010" I expect "dddd dd MMM yyyy"
- ...
6
votes
4answers
4k views
How to provide custom string placeholder for string format
string str ="Enter {0} patient name";
So I am using using string.format to format that.
String.Format(str, "Hello");
Now if i want patient also to be retireved from some config then i need to ...
6
votes
4answers
12k views
Get AM/PM for a date time in lowercase using only a datetime format
I'm to get a custom DateTime format including the AM/PM designator, but I want the "AM" or "PM" to be lowercase without making the rest of of the characters lowercase.
Is this possible using a single ...
5
votes
3answers
92 views
Splitting a variable length string into multiple parts in python
I have a database:
As you can see in the 'desc' column, the text is of variable length (meaning no two strings I pull from this database are going to be of the same length). I will eventually add ...
5
votes
1answer
52 views
How to escape char in Python 3 ''' string?
Here is the String:
'''This is a test { <-- escape these ---> } '''
I would like to escape the
{
and
}
in format method, how can I do so? Thanks.
5
votes
2answers
61 views
python: dots in the name of variable in a format string
Say I've got a dictionary with dots in the name of fields, like {'person.name': 'Joe'}. If I wanted to use this in str.format, is it possible?
My first instinct was
'Name: ...
5
votes
7answers
221 views
Output formatting in Python: replacing several %s with the same variable
I'm trying to maintain/update/rewrite/fix a bit of Python that looks a bit like this:
variable = """My name is %s and it has been %s since I was born.
My parents decided to call me %s ...
5
votes
1answer
188 views
python - pretty print errorbars
I'm using python with numpy, scipy and matplotlib for data evaluation. As results I obtain averages and fitting parameters with errorbars.
I would like python to automatically pretty-print this data ...
5
votes
4answers
169 views
In Oracle, how do I convert a number such as 1 to a string such as “1st”?
I'd like to format a number as "1st", "2nd", "4th", "9th", etc. Is there an Oracle function that will do this for me?