sprintf is a variant of printf which returns the formatted value of one or more expressions to a string instead of printing to stdout, using the specified format.
0
votes
1answer
14 views
mysql not adding a particular string using sprintf
i'm using php and mysql to add data.
i'm adding 13 variables in a table but i'm unable to add a particular string named
order
into the table.
the value of the string is
S.No 1 PRODUCT ID ...
0
votes
0answers
9 views
VB .net: getting process output not created by stdout
Okay, so i've got a program in C (didn't write it myself) that outputs some data using sprintf(s blah blah something (I'm no expert in C/C++) I can't get it to compile correctly myself (I've tried for ...
0
votes
1answer
15 views
sprintf equivalent for xtend
Is it possible to format strings in xtend? I am looking for something just like sprintf in C.
I tried using the String.format in java but I don't know why it is not available in xtend.
Maybe, they ...
1
vote
1answer
23 views
Why is sprintf returning false here?
I am trying to work out why sprintf is returning false here. Can anyone shed any light?
sprintf( "select dog_name, date_format(meet_date, '%D %M %Y') as date, track_name, race_name, race_stakes, ...
2
votes
2answers
40 views
fscanf() / sscanf() - Match variable length Whitespace?
I would to use sscanf() or (preferably) fscanf() to scan /proc/meminfo and return MemTotal:
MemTotal: 1027156 kB
MemFree: 774596 kB
Buffers: 23816 kB
Cached: ...
1
vote
1answer
43 views
How to parse a sprintf string in PHP
Consider a typical structure created by sprintf as
$pattern = "%1$s-%2$s|%3$s";
$str = sprintf($pattern, $a, $b, $c);
now we have a string as test-fore|here
How we can parse the latter string by ...
4
votes
6answers
65 views
Printing big numbers in PHP
The number is 13911392101301011 and regardless of using sprintf or number_format i get the same strange result.
sprintf('%017.0f', "13911392101301011"); // Result is 13911392101301012
...
0
votes
0answers
36 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
2answers
47 views
How to automatically escape strings in a PHP SQL query?
Here's how I currently do it:
$db->query(sprintf('INSERT INTO pages (title, content) VALUES ("%s", "%s")',
$db->esc($title),
$db->esc($content)));
As you can see I'm manually escaping each ...
-2
votes
1answer
38 views
How can I use sprintf to change a number in a string?
I want to change the number in a particular string. For example, if I had the string "GenLabel2", I want to change that to "GenLabel0". The solution I am looking for doesn't just simply change the ...
-4
votes
2answers
69 views
Why is removal of sprintf() from the following code causing segmentation fault?How to deal with it?
I intend to remove sprintf() from my code because its not needed any more in my code .But when I do that,it is causes a segmentation fault,whereas it works fine when sprintf() is there.Please tell me ...
-2
votes
2answers
55 views
Strange Working of sprintf
#include<stdio.h>
#include<time.h>
int main(){
char filepath[100];
char datevar[15];
char command[30];
struct tm *t1;
time_t now ;
time(&now);
...
-1
votes
2answers
38 views
displaying 'var1=var2' MATLAB
I'm having a problem displaying a message in the workspace which would basically say 'var1=var2', where var1's are strings and contained in a vector, like this:
U1 =
u3
v3
u4
v4
Variables' ...
0
votes
4answers
136 views
Format a string using sprintf in c
I am using sprintf for string formation in C.
I need to insert '+' and '-' sign before float value.
This positive and negative signs are inserted by checking a flag after that i insert the float ...
0
votes
3answers
82 views
Functionality of sprintf for NSString
How can I get the functionality of sprintf in Objective-C? The function is of course part of stdio in C, so I could certainly invoke it, but since I'm using Foundation, I need it to work with ...
-5
votes
1answer
53 views
Formatting SprintF in C
The question i have with the code below, is where i have used sprintf, i want it to insert a formatted int, because the client then picks up the data and pulls out data according to char array. So the ...
0
votes
4answers
60 views
Can I use sprintf () with multiple #define token strings
I have two srings that may be changing independantly. I thought to make them #defines so I don't have to change it all over my code. I'm having problems putting them together with sprintf()
So, ...
1
vote
3answers
36 views
R how to output “\” in sprintf
I want to sprintf a string with a "\" in it but it doesn't work:
sprintf("& $\pm %s \delta$", 1.23)
Error: '\p' is an unrecognized escape in character string starting ""& $\p"
I have ...
2
votes
1answer
69 views
sprintf(target, source) has different behaviour to sprintf(target, “%s”, source);
do hope this question hasn't been answered elsewhere, but unable to find a reason for the following behaviour (or perhaps how to phrase the search)
On the C/C++ compiler that comes with a particular ...
0
votes
0answers
37 views
Sprintf in mips
So I am trying to create Sprintf in MIPS. The problem is, I am not sure how to do all the cases for %d, %c, etc.
So even if I do recognize the % how do I recognize the next character? I mean, so I ...
0
votes
0answers
48 views
Sprintf in mips assembly
So I am trying to making sprintf in mips.
The problem is the variable arguments:
int sprintf(char *out, const char *format, ...)
{
//whatever
}
There's variable arguments in C.
I am not sure ...
0
votes
0answers
34 views
Smarty capitalize sprintf
I have a line like this
{t}Text{/t|sprintf:$server.host}
how to capitalize "$server.host" ? I have tried something like this
{/t|sprintf:$server.host|capitalize}
but this capitalizes whole text ...
2
votes
1answer
119 views
Convert AES encrypted hex string back to string in C++
In C++, I have an AES-encrypted char* which I transform to its HEX representation before sending it as an URL parameter, just as it is done in this question. Now, I want to do the opposite, that is ...
1
vote
1answer
93 views
php sprintf() with foreign characters? [duplicate]
Seams to be like sprintf have a problem with foregin characters? Or is it me doing something wrong? Looks like it work when removing chars like åäö from the string though. Should that be necessary?
...
0
votes
1answer
26 views
formating numerical values
I would like to format numerical values, but during formatting they loose "numeric" quality. Is there a better option?
> values
[1] 5 10 20 30
> class(values[1])
[1] "numeric"
> ...
0
votes
4answers
77 views
sprintf to objective c [closed]
I have this line of code:
sprintf ( label, "Lon %s Lat %s", lonStr, latStr );
Which I want to replace with this one:
NSString*label = [NSString stringWithFormat:@"%s %s", lonStr, latStr];
Once I ...
0
votes
1answer
26 views
sprintf with empty parameters detect
I'm trying to prepare element for HTML page with search results. User can provide various criteria to search form e.g. city, region, type. User can provide each or none of criteria. I want to ...
1
vote
1answer
105 views
C - sprintf() affecting array declaration
Firstly I'm new to C but not programming; I do a lot of web development in PHP. To the question...
I've got a function that reads a series of binary files and outputs the content, however the use of ...
-1
votes
4answers
135 views
How to convert long to string without sprintf()? [closed]
I need to convert longs to string, but I can't use sprintf().
Here's my code
char *ultostr(unsigned long value, char *ptr, int base)
{
unsigned long t = 0;
unsigned long res = 0;
...
0
votes
4answers
126 views
Escaping in sprintf
I want to read an escaped sequence from a file where it is stored verbatim.
At some point my call ends up in one of the ansi-c formated functions
sprintf(target, format, ...);
my problem manifests ...
0
votes
2answers
25 views
Some problems calling a function into sprintf()
I am new in PHP and WordPress and I am personalizing an existent template and I have the following problem.
In the function.php file of the template I have the following function:
function ...
4
votes
2answers
113 views
sprintf too many/few decimals
I must convert decimal numbers using a non-scientific (ie. no mantissa/exponent/E's) character string. My code looks like this:
/*!
\brief Converts a <em>XML Schema Decimal</em>
*/
char ...
1
vote
5answers
51 views
sprintf to make a bunch of file names
I'm trying to use sprintf to make a bunch of strings that represent file names. The files will be named 1, 2, 3, 4, 5, ... However when I do this I get some weird errors. The for loop only prints ...
2
votes
1answer
61 views
Print in Command Window without 'ans = ' in matlab?
When I use sprintf, the results show like this :
sprintf('number=%d %d %d',a,b,c)
sprintf('or %d',h)
ans =
number= 5 4 2
ans =
or 2
How can I display the results without ans = obstructing ...
0
votes
0answers
89 views
Is there a way to use sprintf() in c to store strings with whitespace?
I am trying to read a line from input until a newline character is encountered and store in it in a buffer with a string followed by a digit and another string. Any help will be greatly appreciated! ...
2
votes
1answer
21 views
append zero using sprintf with big values
I need to append a number of zeros to a integer value,That number of zeros may be upto 20.
echo sprintf("%020d",'123456789101112');
But i got the result
00000000002147483647
This is wrong,I ...
-3
votes
2answers
36 views
sprintf doesn't work well [closed]
I wish that the number "9239" appears "9.24".
Ditto for "9.2" displays "9.20".
Ditto for "10" appears "10.00" ...
I use
$carat = sprintf ('%02d.2f', $carat);
But this does not
Can you help me?
0
votes
2answers
40 views
NOT IN WHERE Clause Error
I want to fetch a list of items from my database that are not currently within my item array.
I have researched that 'NOT IN' is the perfect solution to do multiple != 'NOT EQUAL TO' in large ...
0
votes
1answer
31 views
Sprintf-like formatting with optional parameters
I am displaying address data that is pulled from customer-supplied records, and trying to format it properly. Each client can specify how they want their customer data to appear, so I am using an ...
0
votes
2answers
170 views
Warning: sprintf() [function.sprintf]: Too few arguments in [closed]
I am having the described error in the following part of code:
$output .= sprintf(
$verification .
'<li style="display:none;"><label ...
0
votes
1answer
41 views
Print specific parts of a cell as strings in matlab?
I have the following matrix array B :
B=[1 2 3; 10 20 30 ; 100 200 300 ; 500 600 800];
Which through a code is combined to form possible combinations between the values. The results are stored in ...
0
votes
3answers
74 views
How to print values stored in a cell as strings (whole words) in Matlab?
For
A=[100;300;1000;240]
and
B=cell(8,1)
I have the following results stored in a B
[100]
[300]
[1000]
[240]
[100;300;240]
[100;1000]
[300;1000]
[100;300;1000]
I want to print these to ...
2
votes
1answer
71 views
conditional sprintf codeigniter php
We are creating 2 applications based on the same codeigniter codebase. Both of these applications make use of language based XML files (we can't use the native CI lang lib), so we have one XML file ...
1
vote
2answers
100 views
Can anyone explain output
#define power(a) #a
int main()
{
printf("%d",*power(432));
return 0;
}
can anyone explain the o/p??
the o/p is
52
-3
votes
2answers
127 views
How to implement printf style functions in C [closed]
How to implement printf style functions in C. I have needed to implement printf style function within a my C code. Otherwise please can anyone give me good examples for function overloading in C. ...
1
vote
4answers
146 views
Adding a \n newline symbol when using sprintf in PHP
I'm trying to export existing data from a MySQL database, into ruby commands I can run with rake db:seed.
Here's my code.
# Generate db:seed data for proveedores.
$proveedores = ...
0
votes
1answer
73 views
sprintf works fine, sprintf_s gives Access Violation Error
I have been using the md5 implementation found in this page:
http://www.zedwood.com/article/121/cpp-md5-function
As it is it works fine. There is however this function:
// return hex representation ...
1
vote
1answer
195 views
Use CString with sprintf
I have some C++ code where I need to use CString with sprintf. In this code I'm creating file names that are CStrings that are defined by sprintf. The code is below.
double Number;
Number = ...
5
votes
2answers
208 views
Formatted print to circular buffer
I'm writing embedded code for STM32F3 mc (STM32F3-Discovery). I need to output some data to UART and I'm using DMA for this as this allows me to concentrate on sensors reading and data processing ...
0
votes
3answers
159 views
How to display (print) vector in Matlab?
I have a vector x = (1, 2, 3) and I want to display (print) it as Answer: (1, 2, 3).
I have tried many approaches, including:
disp('Answer: ')
strtrim(sprintf('%f ', x))
But I still can't get it ...




