Tagged Questions

17
votes
9answers
3k 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 …
7
votes
4answers
249 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 = …
6
votes
8answers
1k 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 …
5
votes
3answers
249 views

C# String.Format an integer to use 1000’s separator without 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: …
5
votes
8answers
405 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 …
4
votes
5answers
937 views

The simplest way of printing a portion of a char[] in C

Let's say I have a char* str = "0123456789" and I want to cut the first and the last three letters and print just the middle, what is the simplest, and safest, way of doing it? Now the trick: The …
3
votes
5answers
186 views

how to store printf into a variable?

I want to store a formatted string using something similar to what printf does in C. char *tmp = (char *)sqlite3_column_text(selectstmt, 2); const char *sqlAnswers = printf("select key from answer …
3
votes
1answer
116 views

How do I use TeX/LaTeX formatting for custom data tips in MATLAB?

I'm trying to annotate a polar plot with data tips labelled with 'R:...,Theta:...' where theta is actually the Greek symbol, rather than the word spelled out. I'm familiar with string formatting using …
3
votes
5answers
184 views

What is the best data type to use in order to store numbers with leading zeroes?

In Access 2003 I need to display numbers like this while keeping the leading zeroes: 080000 090000 070000 What is the best data type to use for this?
3
votes
5answers
158 views

how % applies to this method in Python?

From my studying of python, I've found two uses for %. It can be used as what's called a modulo, meaning it will divide the value to the left of it and the value to the right of it and spit back the …
3
votes
5answers
393 views

How to provide custom string placeholder for string format

Hi, I have a string 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 …
3
votes
3answers
218 views

Which log4j facade to choose?

Essentially I'm looking for something with the same behavior, configuration, logging levels as log4j, but with some of the missing functionality (e.g. formatted logging — see here and here for related …
3
votes
4answers
113 views

Retrieving format string from Format object

In Java is there a way to retrieve the format string from a Format object (or any derived classes) In code: Format f = new DecimalFormat("$0.00"); System.out.println(???); Is there something I …
3
votes
3answers
414 views

In PHP, how do I add to a zero-padded numeric string and preserve the zero padding?

If I have a variable in PHP containing 0001 and I add 1 to it, the result is 2 instead of 0002. How do I solve this problem?
3
votes
2answers
618 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!)

1 2 3 4 5 next
15 30 50 per page