Tagged Questions
The sprintf tag has no wiki summary.
160
votes
16answers
98k views
JavaScript equivalent to printf/string.format
I'm looking for a good JavaScript equivalent of the C/PHP printf() or for C#/Java programmers, String.Format() (IFormatProvider for .NET).
My basic requirement is thousand separator format for ...
26
votes
12answers
4k views
Why use sprintf function in PHP?
I am trying to learn more about the PHP function sprintf() but php.net did not help me much as I am still confused, why would you want to use it?
Take a look at my example below.
Why use this:
...
20
votes
11answers
616 views
Consequences of this buffer overflow?
So here I believe I have a small buffer overflow problem I found when reviewing someone else's code. It immediately struck me as incorrect, and potentially dangerous, but admittedly I couldn't explain ...
12
votes
4answers
471 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 ...
9
votes
3answers
890 views
Is there a free implementation of printf for .net?
The problems:
I can't use string.Format, I have C style format strings;
I can't call the native printf (no P/Invoke);
I can't use http://www.codeproject.com/KB/printing/PrintfImplementationinCS.aspx ...
9
votes
3answers
192 views
is it possible to reproduce python's string interpolation in ocaml?
In python, one can use printf like formatting with the "%" operator:
"i am %d years old" % 99
or
"%s is %d years old" % ("bob", 101)
Is there a way to get the same concise syntax in Ocaml, for ...
8
votes
1answer
1k views
Displaying information from MATLAB without a line feed
Is there any way to output/display information from a MATLAB program without an ending line feed?
My MATLAB program outputs a number a bit now and then. Between outputting the number the program does ...
8
votes
11answers
6k views
Using floats with sprintf() in embedded C
Guys, I want to know if float variables can be used in sprintf() function.
Like, if we write:
sprintf(str,"adc_read = %d \n",adc_read);
where adc_read is an integer variable, it will store the ...
6
votes
3answers
577 views
Clojure sprintf?
There is printf. It prints directly to stdout.
How about sprintf, which formats the same way as printf, but returns a string with no side-effects?
6
votes
4answers
2k views
Is there a sprintf equivalent for node.js
Looking to do output formatting (sprintf type functionality) in node.js, but before I write it myself I was wondering if there's something similar built-in (I've trawled the docs to no avail) or if ...
6
votes
4answers
2k views
Is sprintf(buffer, “%s […]”, buffer, […]) safe?
I saw use of this pattern to concatenate onto a string in some code I was working on:
sprintf(buffer, "%s <input type='file' name='%s' />\r\n", buffer, id);
sprintf(buffer, "%s</td>", ...
6
votes
2answers
1k views
Only show decimal point if floating point component is not .00 sprintf/printf
I am pretty formatting a floating point number but want it to appear as an integer if there is no relevant floating point number.
I.e.
1.20 -> 1.2x
1.78 -> 1.78x
0.80 -> 0.8x
2.00 -> 2x
I can ...
6
votes
3answers
6k views
sprintf in C#?
Is there something similar to sprintf() in C#?
I would for instance like to convert an integer to a 2-byte byte-array.
Something like:
int number = 17;
byte[] s = sprintf("%2c", number);
5
votes
3answers
309 views
C: sprintf and recursion
In C, is it possible to use recursion within the sprintf function ? For some reason I get a segmentation fault when I do it:
inline char *TreeNode_toString(const TreeNode *node)
{
char *out;
...
5
votes
5answers
9k views
How to sprintf an unsigned char?
This doesn't work:
unsigned char foo;
foo = 0x123;
sprintf("the unsigned value is:%c",foo);
I get this error:
cannot convert parameter 2 from
'unsigned char' to 'char'
5
votes
2answers
1k views
Why does Perl's sprintf not round floating point numbers correctly?
I was out looking for the rounding convention used by Perl's built-in function sprintf.
I was thinking that it does a normal rounding (e.g. ROUND_HALF_UP as in Java's rounding mode convention), but ...
5
votes
3answers
5k views
PHP sprintf() and printf() functions
I've never used these functions before but after reading a lot about sprintf(), I decided I should get to know it.
So I went ahead and did the following.
function currentDateTime() {
list($micro, ...
5
votes
6answers
840 views
Is there any way to determine how many characters will be written by sprintf?
I'm working in C++.
I want to write a potentially very long formatted string using sprintf (specifically a secure counted version like _snprintf_s, but the idea is the same). The approximate length ...
4
votes
4answers
92 views
Simple use of sprintf - C
I'm trying to work out why a larger problem is occuring, using a smaller program as an example. This smaller program does not work, leading me to believe it is my understanding of the function that is ...
4
votes
5answers
90 views
string format for printf floating point values
I have a question about using printf.
char str[8];
float val = 2.334563;
sprintf(str, format, val);
printf("val = %s.\n", str);
val = -23.34563;
sprintf(str, format, val);
printf("val = %s.\n", ...
4
votes
4answers
170 views
building a string out of a variable amount of arguments
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
int main(int argc, char * argv[])
{
char *arr[] = { "ab", "cd", "ef" };
char **ptr, ...
4
votes
5answers
363 views
PHP sprintf vs. echo
I posted a question earlier tonight - PHP Wordpress quotes issue where some quotes were causing me some issues.
An answer was posted suggesting using echo sprintf. This looked very clean and took ...
4
votes
1answer
244 views
Struggling with sprintf… something stupid?
Sorry to pester everyone, but this has been causing me some pain. Here's the code:
char buf[500];
sprintf(buf,"D:\\Important\\Calibration\\Results\\model_%i.xml",mEstimatingModelID);
...
4
votes
2answers
350 views
Is there a MySQL equivalent of sprintf?
I have an INT field in my table, which I'd like to select as a zero-padded string. So for example, 8 would come out as 008, 23 as 023 and so on. Is this possible in a MySQL query?
4
votes
2answers
2k views
SPRINTF in shell scripting?
I have an auto-generated file each day that gets called by a shell script.
But, the problem I'm facing is that the auto-generated file has a form of:
FILE_MM_DD.dat
... where MM and DD are ...
4
votes
3answers
849 views
sprintf() with automatic memory allocation?
I'm searching for a sprintf()-like implementation of a function that automatically allocates required memory. So I want to say
char* my_str = dynamic_sprintf( "Hello %s, this is a %.*s nice %05d ...
4
votes
1answer
1k views
PHP: Can you use an array as the arguments part of the sprintf function? if so - how?
From the PHP API reference:
string sprintf ( string $format [,
mixed $args [, mixed $... ]] )
Returns a string produced according to
the formatting string format.
Can $args be an ...
4
votes
6answers
594 views
why doesnt this segfault
I stumbled across something "interesting" and I cant put my finger why the behaviour isn't coherent.
Check this code.
char buf[100];
sprint(buf,"%s",bla);
Simple, right. It's easy to understand ...
4
votes
4answers
2k views
sprintf in Delphi?
Does anyone know a 100% clone of the C/C++ printf for Delphi?
Yes, I know the System.Format function, but it handles things a little different.
For example if you want to format 3 to "003" you need ...
4
votes
2answers
456 views
Can the input and output strings to sprintf() be the same?
I have used this type of convention many times in my code in the past:
strcpy ( cTmpA, "hello" );
sprintf ( cTmpA, "%s world", cTmpA );
Recently I switched my legacy C compiler to Visual Studio ...
4
votes
5answers
2k views
Rounding doubles - .5 - sprintf
I'm using the following code for rounding to 2dp:
sprintf(temp,"%.2f",coef[i]); //coef[i] returns a double
It successfully rounds 6.666 to 6.67, but it doesn't work properly when rounding
5.555. ...
4
votes
5answers
7k views
sprintf() without trailing null space in C
Is there a way to use the C sprintf() function without it adding a '\0' character at the end of its output? I need to write formatted text in the middle of a fixed width string.
4
votes
4answers
1k views
How do I emulate Python's named printf parameters in Ruby?
In Python, you can do this:
print "Hi! I'm %(name)s, and I'm %(age)d years old." % ({"name":"Brian","age":30})
What's the closest, simplest Ruby idiom to replicate this behavior? (No ...
3
votes
6answers
247 views
padding with sprintf
I have a dummy question. I would like to print an integer into a buffer padding with 0 but I cannot sort it out the sprintfformat.
I am trying the following
char buf[31];
int my_val = 324;
sprintf( ...
3
votes
4answers
364 views
Printing a float in C while avoiding variadic parameter promotion to double
How can I print (that is, to stdout) a float in C without having it be promoted to a double when passed to printf?
The issue here is that variadic functions in C promote all float parameter to ...
3
votes
1answer
355 views
Showing decimals of a variable with sprintf in MATLAB
I don't understand the next thing that happens using the sprintf command.
>> vpa(exp(1),53)
ans =
2.7182818284590455348848081484902650117874145507812500
>> e = ...
3
votes
4answers
192 views
wrong usage of sprintf?
I have simple test program
#include <stdio.h>
int main( int argc , char* argv[] )
{
unsigned int number=2048;
char* cpOut;
char cOut[4];
cpOut=(char*)&cOut[0];
printf("cOut ...
3
votes
4answers
1k views
Determining sprintf buffer size - what's the standard?
When converting an int like so:
char a[256];
sprintf(a, "%d", 132);
what's the best way to determine how large a should be? I assume manually setting it is fine (as I've seen it used everywhere), ...
3
votes
5answers
354 views
C : sprintf inside printf as first argument
Learning C at University. This is not a homework, but I was trying to do something (some "creative" part of the assignment) and got stuck.
I understand that this is possible
printf("%d\n", ...
3
votes
3answers
538 views
C language - Fscanf and sprint commands in unix environment
I am trying to read file with 30 rows and 5 columns with separator of "tab". Each time I get only part of the rows.
In the windows environment it's working good. Any idea why in unix it is not ...
3
votes
2answers
1k views
Translating C++'s sprintf format string to C#'s string.Format
I found the following C++ code (comments added myself):
// frame_name is a char array
// prefix is std::string
// k is a for loop counter
// frames is a std::vector string
sprintf(frameName, ...
3
votes
1answer
1k views
printf, sprintf print at least two decimal places
I'm trying to figure out how to use sprintf to print at least two decimal places and no leading zeros. For instance
input:
23
23.0
23.5
23.55
23.555
23.0000
output:
23.00
23.00
23.50
23.55
...
3
votes
3answers
325 views
When and why can sprintf fail?
I'm using swprintf to build a string into a buffer (using a loop among other things).
const int MaxStringLengthPerCharacter = 10 + 1;
wchar_t* pTmp = pBuffer;
for ( size_t i = 0; i < nNumPlayers ...
3
votes
5answers
235 views
Can I measure the necessary buffer for sprintf in Microsoft C++?
I'm writing a small proof-of-concept console program with Visual Studio 2008 and I wanted it to output colored text for readability. For ease of coding I also wanted to make a quick ...
3
votes
5answers
842 views
writing formatted data of unknown length to a string (C programming)
The following C function:
int sprintf ( char * str, const char * format, ... );
writes formatted data to a string. The size of the array passed as str should be enough to contain the entire ...
3
votes
2answers
3k views
Printing out hex values of a char* array in C gives odd values for binary input
Here's an odd problem that's been stumping me for a bit.
The program is written in C89, and it reads a file into a char* array 16 bytes at a time (using fread and a size of sizeof(char)). The file is ...
3
votes
4answers
830 views
Passing variable argument list to sprintf()
I would like to write a function that (amongst other things) accepts a variable number of arguments and then passes them to sprintf().
For example:
<?php
function some_func($var) {
// ...
$s ...
3
votes
4answers
980 views
Printing the value of a float to 2 decimal places
I have a float with the value of e.g 57.400002. I use sprintf_s to display the value on my GUI.
sprintf_s(xPosition, 19, "%f", xPositionValue);
How can I format the float so it displays as 57.40?
3
votes
3answers
2k views
In Perl, how can I limit the number of places after the decimal point but have no trailing zeroes?
This question is similar to "dropping trailing ‘.0’ from floats", but for Perl and with a maximum number of digits after the decimal.
I'm looking for a way to convert numbers to string format, ...
3
votes
4answers
911 views
create a my_printf that sends data to both a sprintf and the normal printf?
I am playing with the printf and the idea to
write a my_printf(...) that calls the normal printf
and a sprintf that sends the result to a special function.
(I was thinking about sprintf since that ...