The vsprintf tag has no wiki summary.
0
votes
1answer
37 views
Baked views have vsprintf error
All views created by cake bake which call 'format' => __() return the following error:
vsprintf(): Too few arguments [CORE/Cake/basics.php, line 565]
I looked at basics.php, line 565. It is part of ...
0
votes
1answer
25 views
php regex vsprintf addign slash on file extension
I have a problem with the following piece of code: pastebin. For example:
/^\/index\.php\/index\/home\/(\w+)$/
It adds a slash before the .php extension. Any ideas how to fix it?
0
votes
0answers
42 views
How do I format a variable argument TCHAR
void LogWriter::WriteLog(LPCTSTR log, const char ending, LPTSTR args, ...)
{
TCHAR str[128] = {0};
int len = (sizeof(log)/sizeof(TCHAR));
len += sizeof(ending)/sizeof(char); //might switch ...
0
votes
0answers
42 views
Detecting which version of vswprintf() exists in Visual C++
I have a project which uses _vscwprintf()/vswprintf() (via _vsctprintf()/_vstprintf()) to create formatted strings of arbitrary length in malloc()ed buffers.
When I started the project under Visual ...
0
votes
1answer
101 views
C - Vsprintf and variable arguments list
Now, the aim of the program is to take four names through a variable argument list and concatenate them using vsprintf() into a single string called 'total'. As the program currently is, only the ...
3
votes
1answer
134 views
Strange! linux & windows vsprintf float num to file
use vsprintf to write the content to file.
output format is:
"tt2:%f, tt2:%x", tt2, *((int *)&tt2)
linux:
gcc 4.4.5: -O2 -ffloat-store
In linux.in file is like this:
tt2:30759.257812, ...
2
votes
1answer
313 views
vsprintf, how to convert void** to va_list on linux
my problem with vsprintf is that I can not obtain input arguments directly, I have to first get inputs one by one and save them in void**, then pass this void** to vsprintf(), it is all fine for ...
4
votes
3answers
170 views
Do I need to va_end when an exception is thrown?
I have a logging framework based on printf-style formatting:
void Logger::debug(const char *fmt, ...) {
va_list args;
va_start(args, fmt);
this->output(DebugLevel, fmt, args);
...
1
vote
2answers
366 views
Platform inconsistencies with vsprintf and va_list
Background: I am currently trying to "extend" standard C formatting with support for handling a certain struct, similar to how Objective-C extends C formatting to allow support for NSString with the ...
0
votes
2answers
112 views
C: vsprintf overwriting an array
I'm having a problem when using the function vsprintf.
I have 3 functions to open, close and write to a XML file. The open function stores the first word of the input text in an array, and the close ...
0
votes
2answers
624 views
visual studio swprintf is making all my %s formatters want wchar_t * instead of char *
Ive got a multi platform project that compiles great on mac, but on windows all my swprintf calls with a %s are looking for a wchar_t instead of the char * im passing it. Turns out M$ thought it would ...
1
vote
5answers
194 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
62 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
3answers
2k 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, ...
0
votes
1answer
217 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 ...
14
votes
2answers
6k 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 = ...
3
votes
2answers
249 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 ...
3
votes
1answer
730 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
1answer
830 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 ...
22
votes
13answers
18k 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:
...