Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
11answers
13k views

String.Format for C++

Looking for an implementation for C++ of a function like .NET's String.Format. Obviously there is printf and it's varieties, but I'm looking for something that is positional as in: ...
4
votes
1answer
796 views

PHP sprintf escaping %

I want the following output:- About to deduct 50% of € 27.59 from your Top-Up account. when I do something like this:- $variablesArray[0] = '€'; $variablesArray[1] = 27.59; $stringWithVariables = ...
2
votes
2answers
133 views

Is it possible to use the sprintf() function in XSLT?

I'd like to do something like "Hello %s" and have "World" in another variable. Of course I could do this simple case using string replacement but if possible I'd like all sprintf() features like ...
2
votes
1answer
235 views

How to check that vsprintf has the correct number of arguments before running

I'm trying to use vsprintf() to output a formatted string, but I need to validate that I have the correct number of arguments before running it to prevent "Too few arguments" errors. In essence I ...
1
vote
5answers
115 views

What is the equivalent of PHP vsprintf() in C?

I've this PHP code and want the equivalent in C for performance reasons. I've done R&D Google; I didn't get any solution. The code is: <?php $array = array('tom','jerry','cat'); ...
1
vote
0answers
40 views

VC command line compilation strange problem

I searched the net and I cannot find an answer for the problem that I am facing. Im not sure if the title of the question itself describes my issue. the problem is, I have a file which I am for ...
1
vote
2answers
338 views

vsprintf or sprintf with named arguments, or simple tempalte parsing in PHP

I'm searching for a way to use named arguments for sprintf or printf. Example sprintf( 'Last time logged in was %hours hours, %minutes minutes, %seconds seconds ago' ,$hours,$minutes, ...
1
vote
1answer
676 views

Mac OS X port crashes in pthread_setspecific in glibstdc++ vsnprintf - how to troubleshoot?

I'm testing a Mac OS X port of my multithreaded server. It starts up, but it dies in vsnprintf soon after the first client request is taken by a worker thread. It seems that vsnprintf is trying to ...
0
votes
1answer
126 views

Calculate Var Args Length in C

I'm trying to port asprintf() to windows, since its a GCC library function on Linux, and doesn't exist on Windows. I'm stuck at calculating the var args' length so I can allocate memory for them. I ...